-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
76 lines (65 loc) · 2.93 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env python3
import re
from setuptools import setup, find_packages
with open("src/hentai/hentai.py", encoding='utf-8') as file_handler:
lines = file_handler.read()
version = re.search(r'__version__ = "(.*?)"', lines).group(1)
package_name = re.search(r'package_name = "(.*?)"', lines).group(1)
python_major = int(re.search(r'python_major = "(.*?)"', lines).group(1))
python_minor = int(re.search(r'python_minor = "(.*?)"', lines).group(1))
print("reading dependency file")
with open("requirements/release.txt", mode='r', encoding='utf-8') as requirements:
packages = requirements.read().splitlines()
with open("requirements/dev.txt", mode='r', encoding='utf-8') as requirements:
dev_packages = requirements.read().splitlines()
print("reading readme file")
with open("README.md", mode='r', encoding='utf-8') as readme:
long_description = readme.read()
print("running %s's setup routine" % package_name)
setup(
author='hentai-chan',
author_email="[email protected]",
name=package_name,
version=version,
description="Implements a wrapper class around nhentai's RESTful API.",
long_description=long_description,
long_description_content_type='text/markdown',
license="General Public License V3",
url="https://www.hentai-chan.dev/projects/hentai",
project_urls={
'Documentation': "https://www.hentai-chan.dev/projects/hentai",
'Source Code': "https://github.com/hentai-chan/hentai",
'Bug Reports': "https://github.com/hentai-chan/hentai/issues",
'Changelog': "https://github.com/hentai-chan/hentai/blob/master/CHANGELOG.md"
},
python_requires=">=%d.%d" % (python_major, python_minor),
install_requires=packages,
extra_requires={
'dev': dev_packages[1:],
'test': ['pytest']
},
include_package_data=True,
package_dir={'': 'src'},
packages=find_packages(where='src'),
entry_points={
'console_scripts': ['%s=%s.__init__:main' % (package_name, package_name)]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Operating System :: OS Independent',
'Topic :: Education',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities'
],
keywords="hentai nhentai nhentai.net API NSFW"
)
wheel_name = package_name.replace('-', '_') if '-' in package_name else package_name
print("\033[92mSetup is complete. Run 'python -m pip install dist/%s-%s-py%d-none-any.whl' to install this wheel.\033[0m" % (wheel_name, version, python_major))