-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
50 lines (49 loc) · 2.13 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
# flake8: noqa
from setuptools import setup, find_packages
setup(
name = 'exporters',
version = '0.6.18',
description = 'Exporters is an extensible export pipeline library that supports filter, '
'transform and several sources and destinations.',
long_description = 'Exporters is an extensible export pipeline library that supports filter, '
'transform and several sources and destinations. They aim to provide a '
'flexible and easy to extend infrastructure for exporting data to and from multiple sources, '
'with support for filtering and transformation.',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
],
keywords = 'exporters export data',
url = 'https://github.com/scrapinghub/exporters',
author = 'Scrapinghub',
author_email = 'info@scrapinghub',
license = 'BSD',
packages = find_packages(exclude=['tests']),
install_requires = ['six', 'retrying', 'requests', 'PyYAML', 'decorator'],
dependency_links = [
'[email protected]:scrapinghub/[email protected]#egg=collection_scanner',
'[email protected]:scrapinghub/flatson.git#egg=flatson',
'[email protected]:scrapinghub/[email protected]#egg=kafka_scanner'
],
extras_require = {
'bz2': ['bz2file'],
'sftp': ['pysftp', 'ecdsa', 'paramiko', 'pycrypto' 'wsgiref'],
's3': ['boto', 'dateparser'],
'hubstorage': ['hubstorage', 'collection_scanner'],
'jq': ['jq'],
'odo': ['flatson', 'odo', 'pandas'],
'kafka': ['kafka-python', 'msgpack-python', 'kafka_scanner'],
'notifications': ['Jinja2'],
'csv': ['boltons'],
'gcloud': ['gcloud'],
'gdrive': ['PyDrive'],
'sqlite': ['sqlitedict', 'SQLAlchemy'],
'postgres': ['psycopg2', 'SQLAlchemy'],
'mysql': ['mysql-python', 'SQLAlchemy'],
'azure': ['azure'],
'xml': ['dicttoxml'],
},
)