forked from singer-io/singer-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·35 lines (33 loc) · 828 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import subprocess
setup(name="singer-python",
version='5.9.0',
description="Singer.io utility library",
author="Stitch",
classifiers=['Programming Language :: Python :: 3 :: Only'],
url="http://singer.io",
install_requires=[
'pytz==2018.4',
'jsonschema==2.6.0',
'simplejson==3.11.1',
'python-dateutil>=2.6.0',
'backoff==1.8.0',
'ciso8601',
],
extras_require={
'dev': [
'pylint',
'ipython',
'ipdb',
'nose',
'singer-tools'
]
},
packages=find_packages(),
package_data = {
'singer': [
'logging.conf'
]
},
)