forked from publicissapient-france/e-footprint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (59 loc) · 1.36 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
# NOTE: you have to use single-quoted strings in TOML for regular expressions.
# It's the equivalent of r-strings in Python. Multiline strings are treated as
# verbose regular expressions by Black. Use [ ] to denote a significant space
# character.
[tool.poetry]
name = "efootprint"
version = "10.0.2"
description = "Digital service environmental footprint model"
authors = ["Vincent Villet for Publicis Sapient"]
readme = "README.md"
include = ["efootprint/constants/custom_units.txt",
"efootprint/builders/services/ecobenchmark_analysis/ecobenchmark_data_for_job_defaults.csv"]
[tool.black]
line-length = 120
target-version = ['py312']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| venv
| __pychache__
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''
[tool.poetry.dependencies]
python = "^3.12"
pint = '0.23'
matplotlib = '3.8'
pytz = '2024.1'
pyvis = '0.3.2'
plotly = '5.19'
pandas = '2.2'
requests = '2.31'
Pint-Pandas= "^0.6"
ecologits= "^0.6"
[tool.poetry.group.dev.dependencies]
pytest = '*'
pytest-cov = '*'
jupyter = "^1.0.0"
ipykernel = "^6.29.3"
mkdocs-material = "*"
pymdown-extensions = "*"
jinja2 = "*"
nbconvert = "*"
pretty-jupyter = "*"
"ruamel.yaml" = "0.18.6"
setuptools = "^75.1.0"