-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
49 lines (45 loc) · 1.51 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import arrapi, os
from setuptools import setup, find_packages
with open("README.rst", "r") as f:
long_descr = f.read()
__version__ = None
if os.path.exists("VERSION"):
with open("VERSION") as handle:
for line in handle.readlines():
line = line.strip()
if len(line) > 0:
__version__ = line
break
setup(
name=arrapi.__package_name__,
version=__version__,
description=arrapi.__description__,
long_description=long_descr,
url=arrapi.__url__,
author=arrapi.__author__,
author_email=arrapi.__email__,
license=arrapi.__license__,
packages=find_packages(),
python_requires=">=3.8",
keywords=["arrapi", "sonarr", "radarr", "arr", "wrapper", "api"],
install_requires=[
"requests"
],
project_urls={
"Documentation": "https://arrapi.kometa.wiki",
"Funding": "https://github.com/sponsors/meisnate12",
"Source": "https://github.com/Kometa-Team/ArrAPI",
"Issues": "https://github.com/Kometa-Team/ArrAPI/issues",
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
)