-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 1.07 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python3
import setuptools
import pathlib
import sys
if sys.version_info < (3, 10):
raise RuntimeError('aiowallhaven requires Python 3.10 or greater')
_ROOT = pathlib.Path(__file__).parent
with open(str(_ROOT / 'README.md')) as f:
readme = f.read()
setuptools.setup(
name="aiowallhaven",
version="0.0.4",
author="Dmitrii Efimov",
author_email="[email protected]",
description="Async wrapper for Wallhaven's API",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/itsuchur/aiowallhaven",
download_url='https://github.com/itsuchur/aiowallhaven/archive/refs/tags/0.0.3.tar.gz',
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.10',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.10.0',
license='MIT',
)