-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
50 lines (48 loc) · 1.38 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
from setuptools import setup
setup(
name='scrapy-cdr',
version='0.6.0',
packages=['scrapy_cdr'],
install_requires=[
'botocore',
'cachetools',
'json_lines',
'requests',
'scrapy',
'six',
'tqdm',
],
extras_requires={
'es': [
'elasticsearch',
'elasticsearch-dsl',
],
'kafka': [
'kafka-python',
],
':python_version<"3.0"': ['futures'],
},
entry_points={
'console_scripts': [
'cdr-v2-to-v3=scrapy_cdr.v2_to_v3:main',
'cdr-es-upload=scrapy_cdr.es_upload:main',
'cdr-es-download=scrapy_cdr.es_download:main',
'cdr-kafka-upload=scrapy_cdr.kafka_upload:main',
],
},
license='MIT license',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)