forked from AlertaDengue/PySUS
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
52 lines (45 loc) · 1014 Bytes
/
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
[tool.poetry]
name = "pysus"
version = "0.6.3"
description = "Tools for dealing with Brazil's Public health data"
authors = ["Flavio Codeco Coelho <[email protected]>"]
license = "GPL"
packages = [{include='pysus'}]
[tool.poetry.dependencies]
cffi = "1.15.1"
dbfread = "2.0.7"
elasticsearch = "^8.3.3"
fastparquet = "^0.8.1"
geocoder = "^1.38.1"
jupyterlab = "^3.4.5"
numpy = "1.23.2"
pandas = "1.4.3"
pyarrow = "^9.0.0"
pycparser = "2.21"
pyreaddbc = "1.0.0"
python = "^3.9"
python-dateutil = "2.8.2"
pytz = "2022.2.1"
six = "1.16.0"
tqdm = "4.64.0"
wget = "^3.2"
loguru = "^0.6.0"
[tool.poetry.dev-dependencies]
black = "^22.6.0"
flake8 = "^5.0.4"
isort = "^5.10.1"
pre-commit = "^2.20.0"
pytest = "^5.2"
sphinx = "^5.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
src_paths = ["isort", "test"]
[tool.black]
# https://github.com/psf/black
target-version = ["py39"]
line-length = 79
color = true
exclude = ["*.git", "docs/"]