-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
53 lines (50 loc) · 1.8 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
50
51
52
53
import pathlib
from setuptools import setup, find_packages
from excludarr import __version__
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="excludarr",
version=__version__,
description="Excludarr excludes streaming services from Radarr and Sonarr",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/haijeploeg/excludarr",
author="Haije Ploeg",
author_email="[email protected]",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
],
license="MIT",
keywords="excludarr, radarr, sonarr, diskspace, cleanup, management, library, streaming, netflix",
packages=find_packages(exclude=["ez_setup", "tests*"]),
python_requires=">=3.6, <4",
install_requires=[
"typer>=0.4.1",
"loguru>=0.6.0",
"rich>=12.4.1",
"requests>=2.27.1",
"PyYAML>=6.0",
"pyarr>=3.1.3",
],
entry_points={
"console_scripts": [
"excludarr=excludarr.main:cli",
],
},
project_urls={
"Bug Reports": "https://github.com/haijeploeg/excludarr/issues",
"Source": "https://github.com/haijeploeg/excludarr",
},
)