-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (45 loc) · 1.48 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
from __future__ import print_function
from setuptools import setup, find_packages
with open('VERSION') as f:
__version__ = f.read()
setup(
name="parser_engine",
version=__version__,
author="huangzhen",
author_email="huangzhen@baixing.com",
description='template-driven parser engine for scrapy',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="MIT",
url="https://gitlab.baixing.cn/spider/parser_engine",
packages=find_packages(),
install_requires=[
"six",
"simplejson",
"jsonpath-rw",
"scrapy",
"scrapy_redis",
"peewee"
],
include_package_data=True,
classifiers=[
"Environment :: Web Environment",
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
# 'Natural Language :: Chinese',
'Operating System :: MacOS',
'Operating System :: Microsoft',
'Operating System :: POSIX',
'Operating System :: Unix',
'Topic :: Multimedia :: Video',
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
zip_safe=True,
)