generated from rl-institut/rli_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (47 loc) · 1.3 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
[tool.poetry]
name = "steel_industry"
version = "0.0.1dev"
description = "Models steel industry with the SEDOS reference dataset"
authors = [
"Sabine Haas <[email protected]>",
"Felix Maurer <[email protected]>"
]
[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_oemof = { git = "https://github.com/sedos-project/data_adapter_oemof.git", branch = "dev"}
#data_adapter = { git = "https://[email protected]/sedos-project/data_adapter", branch = "dev"}
#oemof-tabular = { git = "https://[email protected]/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"