-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
42 lines (38 loc) · 965 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 = "co2calculator"
version = "0.2.0"
description = "Calculates CO2e emissions from travel and commuting as well as heating and electricity consumption of buildings"
authors = ["pledge4future Team <info@pledge4future.org>"]
license = "GPL 3"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^2.2.2"
openrouteservice = "^2.3.3"
pydantic = "1.10.21"
iso3166 = "^2.1.1"
python-dotenv = "^1.0.1"
thefuzz = "^0.22.1"
myst-parser = "^3.0.1"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.0"
pytest = "^8.2.0"
pytest-mock = "^3.14.0"
pytest-cov = "^5.0.0"
pygments = "^2.17.2"
sphinx = "^7.3.7"
sphinx-toolbox = "^3.5.0"
sphinx_rtd_theme = "^1.0.0"
myst-parser = "^3.0.1"
coverage = "7.6.10"
coverage-badge = "^1.1.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"ors: mark tests requiring ORS API key",
]
testpaths = [
"tests",
]