-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (27 loc) · 865 Bytes
/
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
from setuptools import find_packages, setup
setup(
name="requests_spider",
version="0.0.8",
description="Web crawling framework like flask.",
author="Tommy",
long_description=open('README.md').read(),
author_email="[email protected]",
url='https://github.com/Tooooommy/requests_spider',
python_requires='>=3.6.0',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
install_requires=[
'requests-html'
],
license='MIT',
packages=find_packages(),
py_modules=['requests_spider'],
platforms=["all"],
include_package_data=True,
zip_safe=False
)