-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
63 lines (60 loc) · 2.17 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
56
57
58
59
60
61
62
63
from setuptools import setup, find_packages
root_pack = 'moear_spider_zhihudaily.entry'
setup(
name='moear-spider-zhihudaily',
url='https://github.com/littlemo/moear-spider-zhihudaily',
author='moear developers',
author_email='moore@moorehy.com',
maintainer='littlemo',
maintainer_email='moore@moorehy.com',
version='1.1.1',
description='MoEar爬虫功能扩展插件 - 知乎日报',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
keywords='moear scrapy',
packages=find_packages(exclude=('docs', 'build', 'tests*')),
include_package_data=True,
zip_safe=False,
license='GPLv3',
python_requires='>=3',
project_urls={
'Documentation': 'http://moear-spider-zhihudaily.rtfd.io/',
'Source': 'https://github.com/littlemo/moear-spider-zhihudaily',
'Tracker':
'https://github.com/littlemo/moear-spider-zhihudaily/issues',
},
install_requires=[
'Scrapy~=1.5.0',
'beautifulsoup4~=4.6.0',
'billiard~=3.5.0.3',
'moear-api-common~=1.0.2',
],
entry_points={
'moear.spider': [
'zhihu_daily = {}:ZhihuDaily'.format(root_pack),
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: MacOS X',
'Framework :: Scrapy',
'Framework :: Twisted',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: Chinese (Simplified)',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Topic :: Communications :: Email',
'Topic :: Documentation :: Sphinx',
'Topic :: Internet',
'Topic :: Software Development :: Version Control :: Git',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking',
'Topic :: Terminals',
'Topic :: Utilities',
],
)