-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
57 lines (52 loc) · 1.25 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.sdist]
include = [
"LICENSE",
"README.rst",
"docs/",
"examples/",
"src/",
"tests/",
".pylintrc",
"tox.ini",
]
[project]
name = "oemof.thermal"
dynamic = ["version"]
description = "Thermal energy components for the open energy modelling framework."
readme = "README.rst"
authors = [
{name = "oemof developer group", email = "[email protected]"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
requires-python = ">=3.9"
dependencies = [
'oemof.solph',
'matplotlib',
'pvlib',
'numpy >= 1.16.5',
'pandas >= 0.18.0'
]
license = {text = "MIT"}
[tool.black]
line-length = 79
target-version = ['py39', 'py310', 'py311']
[tool.isort]
profile = "black"
force_single_line = true
line_length = 79