-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (56 loc) · 1.64 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
65
[tool.poetry]
name = "tessif-oemof-4-4"
version = "0.1.10"
description = "Tessif-Plugin for providing oemof version 4.4. support."
authors = ["Mathias Ammon <tz3ma.coding@use.startmail.com>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/tZ3ma/tessif_oemof_4_4"
homepage = "https://github.com/tZ3ma/tessif_oemof_4_4"
keywords = ["Tessif", "Tessif-Oemof", "tessif-oemof", "ESSMOS", "optimization", "energy supply system modelling"]
[tool.poetry.dependencies]
python = "^3.8"
oemof-solph = "0.4.4"
tessif = ">=0.0.27"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
coverage = {extras = ["toml"], version = "^6.3.2"}
pytest-cov = "^3.0.0"
pytest-mock = "^3.7.0"
black = "^22.3.0"
flake8 = "^4.0.1"
flake8-bandit = "^3.0.0"
flake8-black = "^0.3.2"
flake8-bugbear = "^22.4.25"
flake8-isort = "^4.1.1"
flake8-docstrings = "^1.6.0"
xdoctest = "^1.0.0"
Sphinx = "^4.5.0"
pep8-naming = "^0.12.1"
pyupgrade = "^2.32.1"
sphinx-paramlinks = "^0.5.2"
pylint = "^2.14.0"
nox = "^2022.1.7"
nox-poetry = "^1.0.2"
tessif-examples = ">=0.3.1"
[tool.poetry.group.plugin.dependencies]
oemof-solph = "0.4.4"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["tessif_oemof_4_4"]
[tool.coverage.report]
show_missing = true
fail_under = 100
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"e2e: marks tests as end 2 end (deselect with '-m \"not e2e\"')",
"con: marks tests as connectivity (deselect with '-m \"not con\"')",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"