generated from rl-institut/super-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (26 loc) · 1.04 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
[build-system]
requires = ["setuptools", "oemof.tabular", "numpy==1.26.0", "dash", "Werkzeug==2.2.2", "oemof-industry"]
build-backend = "setuptools.build_meta"
[project]
name = "oemof-tabular-plugins"
authors = [
{ name="Ciara Dunks", email="[email protected]" },
{ name="Pierre-François Duc", email="[email protected]" },
]
description = "A package that contains various constraint facades to be used with oemof-tabular"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version", "dependencies", "readme"]
[tool.setuptools.dynamic]
readme = {file = ["README.rst"]}
version = {attr = "oemof_tabular_plugins.version"}
dependencies = {file = ["requirements/build_requirements.txt"]}
[project.scripts]
cli-name = "mypkg.mymodule:some_func"
[project.urls]
Homepage = "https://github.com/rl-institut/oemof-tabular-plugins"
Issues = "https://github.com/rl-institut/oemof-tabular-plugins/issues"