-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (48 loc) · 1.17 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
[tool.poetry]
name = "waste"
version = "0.1.0"
description = ""
authors = [
"Niels A. Wouda <n.a.wouda@rug.nl>",
"Marjolein Aerts-Veenstra <m.aerts-veenstra@rug.nl>",
"Nicky van Foreest <n.d.van.foreest@rug.nl>"
]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10,<3.12"
pandas = "^1.4.2"
numpy = "^1.22.3"
openpyxl = "^3.0.9"
matplotlib = "^3.5.1"
tomli = "^2.0.1"
pyvrp = "^0.7.0"
folium = "^0.14.0"
jupyter = "^1.0.0"
scipy = "^1.11.2"
pickleshare = "^0.7.5"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
pre-commit = "^3.2.2"
pytest = "^7.4.0"
[tool.poetry.scripts]
matrix = "waste.matrix:main"
ingest = "waste.ingest:main"
simulate = "waste.simulate:main"
analyze = "waste.analyze:main"
plot = "waste.plot:main"
[tool.black]
line-length = 79
[tool.ruff]
ignore-init-module-imports = true
line-length = 79
select = [
"E", "F", "I", "NPY", "PYI", "Q", "RET", "RSE", "RUF", "SLF", "SIM", "TCH"
]
[tool.ruff.isort]
case-sensitive = true
known-first-party = ["waste"]
[tool.mypy]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"