-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
66 lines (61 loc) · 1.35 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
[tool.poetry]
name = "batch11-e-cartomobile"
version = "0.1.0"
description = "Encourager et planifier la mobilité électrique dans les territoires avec l’Open-Data."
authors = ["mromagne <[email protected]>"]
license = "MIT"
readme = "README.md"
# Huge mess for now, will clean when project converges
[tool.poetry.dependencies]
python = ">=3.8.1,<3.9.7 || >3.9.7,<3.10" # streamlit & numba constraints
streamlit = "1.23.1"
folium = "0.14"
jupyter = "^1.0.0"
geopandas = "^0.12.2"
isort = "^5.12.0"
pre-commit = "^3.2.2"
flake8 = "^6.0.0"
matplotlib = "^3.7.1"
requests = "2.29.0"
seaborn = "^0.12.2"
numpy = "1.20.3"
bs4 = "^0.0.1"
ipykernel = "^6.22.0"
nbqa = "^1.7.0"
umap-learn = "^0.5.3"
pyarrow = "^11.0.0"
ipywidgets = "^8.0.6"
dask-geopandas = "^0.3.0"
ipython_genutils = "^0.2.0"
css-html-js-minify = "^2.5.5"
mapbox = "^0.18.1"
black = "^23.3.0"
plotly = "^5.14.1"
pandas = "1.5.3"
pytest = "^7.3.1"
scikit-learn = "^1.2.2"
streamlit-folium = "^0.11.1"
pytest-shutil = "^1.7.0"
SQLAlchemy = "^2.0.15"
psycopg2-binary = "2.9.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["e_cartomobile/tests"]
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.venv
| _build
| buck-out
| build
| dist
)/
'''