-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
50 lines (44 loc) · 1.34 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pymfm"
authors = [
{ name = "Institute for Automation of Complex Power Systems (ACS), E.ON Energy Research Center (E.ON ERC), RWTH Aachen University", email = "[email protected]" },
]
description = "A Python framework for microgrid flexibility management."
requires-python = ">=3.8"
keywords = []
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
]
dependencies = [
"pandas==1.5.3",
"pyomo==6.5.0",
"matplotlib==3.7.1",
"scipy==1.11.0",
"xlsxwriter==3.1.2",
"pydantic==1.10.9",
"astral==3.2",
]
version = "0.5.5"
dynamic = ["readme"]
[tool.setuptools]
zip-safe = false
platforms = ["any"]
[tool.setuptools.dynamic]
readme = { file = ["README.md"], content-type = "text/markdown" }
[tool.setuptools.packages.find]
where = ["src"]
# [project.optional-dependencies]
# pdf = ["ReportLab>=1.2", "RXP"]
# rest = ["docutils>=0.3", "pack ==1.1, ==1.3"]
# [project.scripts]
# my-script = "my_package.module:function"