-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
67 lines (61 loc) · 1.32 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
[tool.poetry]
name = "Episcanner-downloader"
version = "1.0.9" # 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/episcanner-downloader"
homepage = "https://github.com/AlertaDengue/epi-scanner-downloader"
packages = [{include="scanner", from="src"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
pandas = ">=2.1.0"
psutil = "^5.9.2"
loguru = "^0.7.0"
typing-extensions = "^4.4.0"
lmfit = "^1.1.0"
pyarrow = "^11.0.0"
geopandas = "^0.12.2"
SQLAlchemy = "<2.0"
python-dotenv = "^1.0.0"
urllib3 = "1.26.15"
duckdb = "^0.9.2"
epiweeks = "^2.3.0"
[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"
[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"]