generated from thegraphnetwork/wave-docker-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
86 lines (77 loc) · 1.72 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
[tool.poetry]
name = "Episcanner"
version = "1.4.0" # changed by semantic-release
description = "Dashboard quickstart template"
authors = ["Flávio Codeço Coelho <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/AlertaDengue/epi-scanner"
homepage = "https://github.com/AlertaDengue/epi-scanner"
packages = [{include='epi_scanner'}]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
h2o-wave = "0.23.0"
pandas = "^1.5.0"
psutil = "^5.9.2"
loguru = "^0.6.0"
typing-extensions = "^4.4.0"
lmfit = "^1.1.0"
pyarrow = "^11.0.0"
geopandas = "^0.12.2"
matplotlib = "^3.7.1"
mapclassify = "^2.5.0"
plotly = "^5.13.1"
SQLAlchemy = "<2.0"
python-dotenv = "^1.0.0"
psycopg2-binary = "^2.9.6"
altair = "^5.0.0"
gpdvega = "^0.1.1rc1"
scipy = "^1.7.1"
compose-go = "^2.20.2"
duckdb = "^0.10.1"
virtualenv = "^20.26.3"
[tool.poetry.dev-dependencies]
pytest = "*"
coverage = "^6.5.0"
nox = "^2022.8.7"
nox-poetry = "^1.0.1"
autoflake8 = "^0.4.0"
black = "^22.10.0"
pre-commit = "^2.20.0"
isort = "^5.10.1"
flake8 = "^5.0.4"
containers-sugar = { version = "^1.9.1", python = ">=3.8.1,<3.12" }
makim = "^1.8.3"
[tool.poetry.group.dev.dependencies]
virtualenv = "^20.25.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
# https://github.com/psf/black
target-version = ["py311"]
line-length = 79
color = true
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| env
| venv
| migrations/*
)/
'''
[tool.isort]
profile = "black"
src_paths = ["isort", "test"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "dirty-tag"
write_to = "epi_scanner/_version.py"