-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
39 lines (38 loc) · 1.25 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
from distutils.core import setup
from setuptools import find_packages
setup(
name='Amipy',
version='1.0.0',
url='https://github.com/01ly/Amipy',
description='A micro asynchronous Python website crawler framework',
# long_description=open('README.md').read(),
author='linkin',
maintainer='linkin',
maintainer_email='yooleak@outlook.com ',
license='MIT',
packages=find_packages(exclude=('tests', 'tests.*')),
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': ['amipy = amipy.cmd:run']
},
install_requires=[
'lxml',
'bs4',
'six>=1.5.2',
'bloompy>=0.1.1',
],
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
python_requires='>=3.5',
)