-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (57 loc) · 1.64 KB
/
setup.py
File metadata and controls
62 lines (57 loc) · 1.64 KB
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
54
55
56
57
58
59
60
61
62
import io
from setuptools import setup, find_packages
import shutil
import os
NAME = "subdl"
#shutil.copy2('__version__.py', NAME)
# Read the README file
with io.open("README.md", "rt", encoding="utf8") as f:
readme = f.read()
#import __version__
exec(open(f'__version__.py').read())
setup(
name=NAME,
version=version,
url="https://github.com/cumulus13/subdl",
project_urls={
"Documentation": "https://github.com/cumulus13/subdl",
"Code": "https://github.com/cumulus13/subdl",
},
license="MIT License",
author="cumulus13",
author_email="cumulus13@gmail.com",
maintainer="cumulus13 Team",
maintainer_email="cumulus13@gmail.com",
description="SubDL.com Downloader",
long_description=readme,
long_description_content_type="text/markdown",
package_data={'subdl': ['*.ini', 'README.md', '__version__.py']},
packages=[NAME],
install_requires=[
'pydebugger',
'rich',
'requests',
'bs4',
'ctraceback',
'rich_argparse',
'jsoncolor @ git+https://github.com/cumulus13/jsoncolor.git',
'json5',
'configset'
],
entry_points={
"console_scripts": [
"subdl = subdl.__main__:main",
]
},
data_files=['README.md', '__version__.py'],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Topic :: Multimedia :: Video",
],
python_requires='>=3.6',
)