forked from singer-io/tap-db2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (32 loc) · 867 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
#!/usr/bin/env python
from setuptools import setup
setup(
name="tap-db2",
version="1.0.0",
description="Tap for extracting data from an IBM DB2 database",
author="Tom Sloman",
url="TO-DO",
classifiers=[
# "License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3 :: Only",
],
py_modules=["tap_db2"],
install_requires=[
"attrs==21.4.0",
"backoff==1.8.0",
"ibm-db-sa==0.3.7",
"ibm-db==3.1.1",
"jinja2==2.11.3",
"markupsafe<2.1.0",
"pendulum==1.2.0",
"pyodbc==4.0.26",
"pytz>=2018.1",
"singer-python==5.9.0",
"sqlalchemy<2.0.0",
],
entry_points="""
[console_scripts]
tap-db2=tap_db2:main
""",
packages=["tap_db2", "tap_db2.sync_strategies"],
)