forked from transferwise/pipelinewise-singer-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (42 loc) · 1.21 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
#!/usr/bin/env python
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name="pipelinewise-singer-python",
version='2.0.1',
description="Singer.io utility library - PipelineWise compatible",
python_requires=">=3.7.0, <3.11",
long_description=long_description,
long_description_content_type="text/markdown",
author="TransferWise",
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only'
],
url="https://github.com/transferwise/pipelinewise-singer-python",
install_requires=[
'pytz',
'jsonschema==3.2.0',
'orjson==3.8.0',
'python-dateutil>=2.6.0',
'backoff==2.1.2',
'ciso8601',
],
extras_require={
'dev': [
'pylint==2.11.1',
'pytest==7.1.2',
'coverage[toml]~=6.3',
'ipython',
'ipdb',
'unify==0.5'
]
},
packages=['singer'],
package_data={
'singer': [
'logging.conf'
]
},
include_package_data=True
)