forked from singer-io/singer-python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
executable file
·25 lines (23 loc) · 631 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·25 lines (23 loc) · 631 Bytes
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
#!/usr/bin/env python
fromsetuptoolsimportsetup, find_packages
importsubprocess
setup(name="singer-python",
version='5.0.2',
description="Singer.io utility library",
author="Stitch",
classifiers=['Programming Language :: Python :: 3 :: Only'],
url="http://singer.io",
install_requires=[
'jsonschema==2.6.0',
'pendulum==1.2.0',
'simplejson==3.11.1',
'python-dateutil>=2.6.0',
'backoff==1.3.2',
],
packages=find_packages(),
package_data= {
'singer': [
'logging.conf'
]
},
)