forked from hect0x7/JMComic-Crawler-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (51 loc) · 1.66 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
from setuptools import setup, find_packages
with open("README.md", encoding='utf-8') as f:
long_description = f.read()
version = None
with open('./src/jmcomic/__init__.py', encoding='utf-8') as f:
for line in f:
if '__version__' in line:
version = line[line.index("'") + 1: line.rindex("'")]
break
if version is None:
print('Set version first!')
exit(1)
setup(
name='jmcomic',
version=version,
description='Python API For JMComic (禁漫天堂)',
long_description_content_type="text/markdown",
long_description=long_description,
url='https://github.com/hect0x7/JMComic-Crawler-Python',
author='hect0x7',
author_email='[email protected]',
packages=find_packages("src"),
package_dir={"": "src"},
python_requires=">=3.7",
install_requires=[
'commonX>=0.6.4',
'curl_cffi',
'PyYAML',
'Pillow',
'pycryptodome',
],
keywords=['python', 'jmcomic', '18comic', '禁漫天堂', 'NSFW'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"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",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
],
entry_points={
'console_scripts': [
'jmcomic = jmcomic.cl:main'
]
}
)