forked from wintersrd/pipelinewise-tap-mssql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (37 loc) · 1.15 KB
/
pyproject.toml
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
[tool.poetry]
name = "tap-mssql"
version = "2.2.3"
description = "A pipelinewise compatible tap for connecting Microsoft SQL Server"
authors = ["Rob Winters <[email protected]>"]
license = "GNU Affero"
readme = "README.md"
homepage = "https://robertwinters.nl"
repository = "https://github.com/wintersrd/pipelinewise-tap-mssql"
keywords = ["singer", "meltano", "pipelinewise", "mssql"]
classifiers = ["Development Status :: 5 - Production/Stable", "Topic :: Database"]
[tool.poetry.scripts]
tap-mssql = 'tap_mssql.__init__:main'
[tool.poetry.dependencies]
python = "^3.7"
attrs = ">=16.3.0"
pendulum = ">=1.2.0"
singer-python = "5.9.0"
# pymssql==2.2.8 broken: https://github.com/pymssql/pymssql/issues/833
pymssql = ">=2.1.4,!=2.2.8"
backoff = ">=1.8.0"
[tool.poetry.dev-dependencies]
docker = "^6.1.3"
pytest = "^7.0.0"
pytest-cov = "^4.1.0"
mypy = "^0.971"
pytest-mock = "^3.6.1"
pytest-sugar = "^0.9.7"
pytest-datafiles = "^2.0"
tox-poetry-installer = "^0.10.3"
tox-docker = "4.1.0"
pre-commit = "^2.17.0"
bumpversion = "^0.6.0"
tox = "^3.28.0"
[build-system]
requires = ["poetry==1.4.2"]
build-backend = "poetry.masonry.api"