|
1 | 1 | from setuptools import setup |
| 2 | +from setuptools import find_packages |
2 | 3 |
|
3 | 4 |
|
4 | 5 | def readme(): |
5 | 6 | with open('README.rst') as f: |
6 | 7 | return f.read() |
7 | 8 |
|
8 | 9 | setup(name='icrawler', |
9 | | - version='0.1.0', |
| 10 | + version='0.1.1', |
10 | 11 | description='A mini framework of image crawlers', |
11 | 12 | long_description='This package is a mini framework for multi-thread image' |
12 | 13 | ' crawler. It also provides some useful built-in' |
13 | 14 | ' crawlers such as google, bing, baidu, flickr image' |
14 | 15 | ' crawlers and a greedy website crawler.', |
| 16 | + keywords='image crawler spider', |
| 17 | + packages=find_packages(), |
15 | 18 | classifiers=[ |
16 | 19 | 'Development Status :: 3 - Alpha', |
17 | 20 | 'License :: OSI Approved :: MIT License', |
| 21 | + 'Operating System :: OS Independent', |
| 22 | + 'Programming Language :: Python :: 2', |
| 23 | + 'Programming Language :: Python :: 2.7', |
| 24 | + 'Programming Language :: Python :: 3', |
18 | 25 | 'Programming Language :: Python :: 3.5', |
19 | 26 | 'Topic :: Utilities', |
| 27 | + 'Topic :: Internet :: WWW/HTTP', |
| 28 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
20 | 29 | ], |
21 | | - keywords='image crawler spider', |
22 | 30 | url='https://github.com/hellock/icrawler', |
23 | 31 | author='Kai Chen', |
24 | 32 | |
25 | 33 | license='MIT', |
26 | | - packages=['icrawler'], |
27 | 34 | install_requires=[ |
28 | | - 'beautifulsoup4', |
| 35 | + 'beautifulsoup4>=4.4.1', |
29 | 36 | 'lxml', |
30 | 37 | 'Pillow', |
31 | | - 'requests', |
32 | | - 'six' |
| 38 | + 'requests>=2.9.1', |
| 39 | + 'six>=1.10.0' |
33 | 40 | ], |
34 | 41 | zip_safe=False) |
0 commit comments