-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.38 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
[tool.poetry]
name = "pommesdispatch"
version = "0.1.1"
description = "A bottom-up fundamental power market model for the German electricity sector"
authors = ["Johannes Kochems <[email protected]>", "Yannick Werner <>", "Johannes Giehl <>", "Benjamin Grosse <>"]
maintainers = ["Johannes Kochems <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/pommes-public/pommesdispatch/"
documentation = "https://pommesdispatch.readthedocs.io/"
keywords = ["power market", "fundamental model", "dispatch", "power price",
"oemof.solph"]
classifiers = [
"Development Status :: 5 - Production/Stable"
]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "*"
pandas = "*"
"oemof.solph" = "0.4.4"
pyyaml = "*"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
run_pommes_dispatch = "pommesdispatch.cli:run_pommes_dispatch"
[tool.poetry.extras]
dev = ["pytest", "sphinx", "sphinx_rtd_theme", "sphinx_copybutton"]
[tool.poetry.urls]
"Changelog" = "https://pommesdispatch.readthedocs.io/en/latest/changelog.html"
"Issue Tracker" = "https://github.com/pommes-public/pommesdispatch/issues"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| ci
)/
'''