-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
92 lines (79 loc) · 2.04 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[tool.poetry]
name = "fireant"
version = "8.0.5"
description = ""
authors = ["Ąžuolas Krušna <[email protected]>"]
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.8.0"
pandas = "^2.0.0"
pypika = "0.48.2"
toposort = "1.6"
pymysql = {version = "1.0.2", optional = true}
cython = {version = "3.0.0", optional = true}
pymssql = {version = "2.2.8", optional = true}
psycopg2-binary = {version = "2.9.6", optional = true}
snowflake-connector-python = {version = "^3.0.0", optional = true}
vertica-python = {version = "^1.0.0", optional = true}
matplotlib = {version = ">=3.1.0", optional = true}
ipython = {version = ">=7.11", optional = true}
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
coverage = "7.3.0"
watchdog = "3.0.0"
tox = "==3.23.1"
tox-venv = "0.4.0"
tox-gh-actions = "2.5.0"
bumpversion = "0.5.3"
sphinx = "2.2.0"
sphinx-rtd-theme = "0.4.3"
black = "^23.9.1"
[tool.poetry.group.postgresql.dependencies]
psycopg2-binary = "2.9.6"
[tool.poetry.group.mysql.dependencies]
pymysql = "1.0.2"
[tool.poetry.group.mssql.dependencies]
cython = "3.0.0"
pymssql = "2.2.8"
[tool.poetry.group.redshift.dependencies]
psycopg2-binary = "2.9.6"
[tool.poetry.group.snowflake.dependencies]
snowflake-connector-python = "^3.0.0"
[tool.poetry.group.vertica.dependencies]
vertica-python = "^1.0.0"
[tool.poetry.group.ipython.dependencies]
matplotlib = ">=3.1.0"
ipython = ">=7.11"
[tool.poetry.extras]
ipython=["matplotlib", "ipython"]
vertica=["vertica-python"]
snowflake=["snowflake-connector-python"]
redshift=["psycopg2-binary"]
postgresql=["psycopg2-binary"]
mysql=["pymysql"]
mssql=["cython", "pymssql"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
skip-string-normalization = true
target-version = ['py36', 'py37', 'py38']
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| docs
)/
| setup.py
)
'''