forked from SteveDMurphy/pipelinewise-tap-mssql
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·32 lines (30 loc) · 908 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
#!/usr/bin/env python
from setuptools import setup
setup(
name="pipelinewise-tap-mssql",
version="1.0.3",
description="Singer.io tap for extracting data from SQL Server - PipelineWise compatible",
author="Stitch",
url="https://github.com/wintersrd/pipelinewise-tap-mssql",
classifiers=[
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3 :: Only",
],
py_modules=["tap_mssql"],
install_requires=[
"attrs==16.3.0",
"pendulum==1.2.0",
"singer-python==5.9.0",
"sqlalchemy<2.0.0",
"pyodbc==4.0.26",
"backoff==1.8.0",
"MarkupSafe==2.0.1",
"jinja2==2.11.3",
"pandas==1.2.2",
],
entry_points="""
[console_scripts]
tap-mssql=tap_mssql:main
""",
packages=["tap_mssql", "tap_mssql.sync_strategies"],
)