-
Notifications
You must be signed in to change notification settings - Fork 85
/
pyproject.toml
119 lines (111 loc) · 2.44 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.sdist]
include = [
"CHANGELOG.rst",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"LICENSE*",
"PULL_REQUEST_TEMPLATE.md",
".coveragerc",
".editorconfig",
".pep8speaks.yml",
".readthedocs.yml",
"paper.bib",
"paper.md",
"tox.ini",
"docs/",
"tests/",
"tutorial/",
]
exclude = ["docs/_build"]
[project]
name = "tespy"
version = "0.7.7"
description = "Thermal Engineering Systems in Python (TESPy)"
readme = "README.rst"
authors = [
{name = "Francesco Witte", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.9"
dependencies = [
"CoolProp>=6.6",
"jinja2",
"matplotlib>=3.2.1",
"numpy>=1.13.3",
"pandas>=1.3.0",
"tabulate>=0.8.2",
]
license = {text = "MIT"}
[project.urls]
Homepage = "https://github.com/oemof/tespy"
Documentation = "https://tespy.readthedocs.io/"
Changelog = "https://tespy.readthedocs.io/en/main/whats_new.html"
"Issue Tracker" = "https://github.com/oemof/tespy/issues"
[project.optional-dependencies]
dev = [
"build",
"flit",
"fluprodia",
"furo",
"iapws",
"pyromat",
"pytest",
"sphinx>=7.2.2",
"sphinx-copybutton",
"sphinx-design",
"sphinxcontrib.bibtex",
"tox",
]
[tool.pytest.ini_options]
python_files = [
"test_*.py",
"*_test.py",
"tests.py",
]
addopts = """
-ra
--strict-markers
--doctest-modules
--doctest-glob=\"*.rst\"
--tb=short
--pyargs
--ignore=docs/conf.py
--ignore=docs/scripts
--ignore=docs/_build
"""
testpaths = [
"src/",
"tests/",
"docs/",
]
[tool.isort]
force_single_line = true
line_length = 120
known_first_party = "tespy"
default_section = "THIRDPARTY"
forced_separate = "test_tespy"
skip = "migrations"
[tool.coverage.run]
branch = true
source = ["src"]
parallel = true
[tool.coverage.report]
show_missing = true
precision = 2
omit = ["migrations"]