generated from dataforgoodfr/d4g-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (36 loc) · 858 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
[tool.poetry]
name = "pinkbombs"
version = "0.1.0"
description = "A dataviz app about the salmon fishing and farming industry"
authors = ["DataForGood"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
dash = "^2.16.0"
dash-bootstrap-components = "^1.5.0"
pandas = "^2.2.1"
openpyxl = "^3.1.2"
SQLAlchemy = "^2.0.28"
psycopg2 = "^2.9.9"
python-dotenv = "^1.0.1"
psycopg2-binary = "^2.9.9"
loguru = "^0.7.2"
gunicorn = "^21.2.0"
fastapi = "^0.110.1"
uvicorn = "^0.29.0"
folium = "^0.16.0"
geopandas = "^0.14.3"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.6.2"
pytest = "^8.0.2"
black = "^24.3.0"
ruff = "^0.3.0"
[tool.poetry.group.jupyter.dependencies]
ipykernel = "^6.29.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 100