-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py.template
51 lines (45 loc) · 1.38 KB
/
setup.py.template
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
from setuptools import find_packages, setup
version = '__version__'
author = '__author__'
release_status = '5 - Production/Stable'
if ~version.find('beta'):
release_status = '4 - Beta'
if ~version.find('alpha'):
release_status = '3 - Alpha'
setup(
name='manga_py.providers',
version=version,
license='MIT',
author=author,
packages=find_packages(exclude=('tests', '.mypy_cache')),
keywords="Manga, crawler, Manga crawler providers",
zip_safe=False,
include_package_data=True,
url="https://github.com/manga-py/providers",
namespace_packages=['manga_py', ],
classifiers=[
'Development Status :: %s' % (release_status,),
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: HTML'
],
install_requires=[
'lxml',
'cssselect',
'pycryptodome',
'cloudscraper',
'requests',
'packaging',
'js2py',
'tinycss2',
'peewee',
],
python_requires='>=3.6'
)