forked from s7clarke10/tap-sybase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 862 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
#!/usr/bin/env python
from setuptools import setup
setup(
name="tap-sybase",
version="1.0.11",
description="Singer.io tap for extracting data from SQL Server - PipelineWise compatible",
author="Stitch",
url="https://github.com/s7clarke10/tap-sybase",
classifiers=[
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3 :: Only",
],
py_modules=["tap_sybase"],
install_requires=[
"attrs==23.1.0",
"pendulum>=1.2.0",
"singer-python==5.13.0",
# pymssql==2.2.8 broken: https://github.com/pymssql/pymssql/issues/833
"pymssql==2.3.0",
"backoff==1.8.0",
],
entry_points="""
[console_scripts]
tap-sybase=tap_sybase:main
""",
packages=["tap_sybase", "tap_sybase.sync_strategies"],
)