-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 1.06 KB
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
[project]
name = "vpplib"
description = "simulating distributed energy appliances in a virtual power plant"
readme = "README.md"
keywords = ["virtual power plant", "energy system"]
requires-python = ">=3.9"
authors = [
{ name = "Pyosch", email = "pyosch@posteo.de" }
]
license = {text = "GNU General Public License v3 (GPLv3)"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
dynamic = ["dependencies", "version"]
[tool.setuptools.dynamic]
version = {attr = "vpplib.__version__"}
dependencies = {file = "requirements.txt"}
[tool.setuptools.packages.find]
include = ["vpplib"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.urls]
"GitHub" = "https://github.com/Pyosch/vpplib"