-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
38 lines (34 loc) · 965 Bytes
/
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
[build-system]
requires = ["setuptools", "pandas", "matplotlib", "plotly", "oemof.solph"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["oemof_visio"]
[project]
name = "oemof-visio"
authors = [
{ name="oemof developing group", email="oemof@rl-institut.de"},
]
description = "A package that contains postprocessing and visualisation tools for oemof-solph models"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"matplotlib",
"pandas",
"plotly"
]
dynamic = ["version", "readme"]
[tool.setuptools.dynamic]
readme = {file = ["README.rst"]}
version = {attr = "oemof_visio.version"}
[project.optional-dependencies]
network = [
"graphviz",
"oemof.network"
]
[project.urls]
Homepage = "https://github.com/oemof/oemof-visio"
Issues = "https://github.com/oemof/oemof-visio/issues"