generated from rl-institut/rli_template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
56 lines (49 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
[tool.poetry]
name = "data_adapter_oemof"
version = "0.0.1dev"
description = "Data adapter from oedatamodel to oemof.tabular datapackages"
authors = [
"Jann Launer <jann.launer@rl-institut.de>",
"Sarah Berendes <Sarah.Berendes@rl-institut.de>",
"Julian Endres <Julian.Endres@rl-institut.de>",
"Felix Maurer <Felix.Maurer@rl-institut.de>",
"Hendrik Huyskens <Hendrik.Huyskens@rl-institut.de>"
]
[tool.poetry.group.dev.dependencies]
isort = "^5.12.0"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
data_adapter = { git = "https://git@github.com/sedos-project/data_adapter", branch = "main"}
oemof-tabular = { git = "https://git@github.com/oemof/oemof-tabular", branch = "dev"}
oemof-industry = { git = "https://github.com/sedos-project/oemof.industry.git", branch = "main"}
boto3 = "1.26.125" # fix boto3 to fasten up dependency resolution
python-dotenv = "^0.21.0"
tsam = "^2.3.1"
numpy = "<2"
[tool.poetry.dev-dependencies]
black = "20.8b1"
pytest = "^7.0.1"
coverage = "^6.3.2"
flake8 = "^4.0.1"
pre-commit = "^2.17.0"
[tool.poetry.extras]
docs = ["Sphinx", "sphinx-rtd-theme", "sphinxcontrib-bibtex"]
[tool.black]
exclude = '''
/(
\
|
\.eggs
| \.git
| \.mypy_cache
| meta/migrations
| docs
| .venv
)/
'''
max-line-length=100
[tool.isort]
profile = "black"