-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.17 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
[tool.poetry]
name = "RadarTimelineData"
version = "0.1.0"
description = ""
authors = ["oliver.reeves <[email protected]>"]
readme = "README.md"
packages = [{ include = "radar_timeline_data" }]
[tool.poetry.dependencies]
python = "^3.11"
pyyaml = "^6.0"
sqlalchemy = "^2.0.23"
pyodbc = ">=5.0.1,<6.0.0"
xlsxwriter = "^3.1.0"
openpyxl = "^3.1.2"
psycopg2 = "^2.9.6"
types-python-dateutil = "^2.8.19.14"
types-openpyxl = "^3.1.0.26"
polars = "0.20.13"
tox = "^4.14.1"
rr-connection-manager = "^0"
python-docx = "^1.1.0"
pyarrow = "^16.1.0"
pandas = "^2.2.2"
radar-models = { git = "https://github.com/renalreg/radar-models.git" }
loguru = "^0.7.2"
ukrdc-sqla = "^2.5.1"
ukrr-models = "^2.2.1"
tenacity = "^8.3.0"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
pytest = "^7.3.1"
pytest-mock = "^3.10.0"
faker = "^18.4.0"
mypy = "^1.2.0"
bandit = "^1.7.5"
tox = "^4.4.12"
pytest-cov = "^4.0.0"
pylint = "^3.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint]
disable = "too-many-locals, too-many-return-statements, too-many-branches, fixme, too-many-lines"
max-line-length = 160