-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
68 lines (59 loc) · 1.61 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
66
67
68
[tool.poetry]
name = "tessif"
version = "0.0.28"
description = "Transforming Energy Supply System modell*I*ng Framework"
authors = ["Mathias Ammon <[email protected]>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/tZ3ma/tessif"
homepage = "https://github.com/tZ3ma/tessif"
keywords = ["Tessif", "tessif", "ESSMOS", "energy supply system modelling"]
[tool.poetry.dependencies]
python = "^3.8"
click = ">7"
matplotlib = "^3"
strutils = "^0.1.1"
networkx = "^3"
dcttools = "^0.1.4"
[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.5"
nox = "^2022.11.21"
nox-poetry = "^1.0.2"
tessif-examples = ">=0.3.0"
[tool.poetry.scripts]
tessif = "tessif.cli:main_cli_entry"
[tool.isort]
profile = "black"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["tessif"]
[tool.coverage.report]
show_missing = true
fail_under = 100
[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"