-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
41 lines (40 loc) · 1.33 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import setuptools_scm # noqa: F401
import toml # noqa: F401
setup(
name="Differential",
packages=find_packages(include=["differential", "differential.*"]),
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
description="a Python script for easy uploading torrents to varies PT sites.",
author="Lei Shi",
author_email="[email protected]",
url="https://github.com/leishi1313/Differential",
keywords=["PT", "mediainfo", "ptgen", "ptpimg"],
classifiers=[
"Environment :: Console",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.7",
install_requires=[
"loguru>=0.5.0",
"Pillow>=8.0.0",
"pymediainfo>=5.0",
"torf>=3.0.0",
"requests",
],
entry_points={
"console_scripts": [
"differential=differential.main:main",
"dft=differential.main:main",
]
},
)