-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.19 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
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "estim8"
version = "0.1.4"
authors = [
{name = "Tobias Latour", email = "[email protected]"},
{name = "Daniel Strohmeier", email = "[email protected]"},
]
description = "A parameter estimation tool for DAE models implemented compliant to the Functional Mockup Interface"
readme = "README.md"
requires-python = ">=3.10.0,<=3.14"
license = {text = "AGPLv3"}
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Intended Audience :: Science/Research",
]
keywords=["Biorpocessmodeling", "Parameter estimation", "Functional Mockup Interface"]
dependencies = [
"numpy>=1.26.0",
"fmpy",
"scikit-optimize",
"scikit-learn",
"matplotlib",
"seaborn",
"pandas<3",
"pytensor-federated",
"pytensor",
"grpclib",
"openpyxl",
"psutil",
]
[tool.setuptools.packages.find]
include = ["estim8"]
[tool.setuptools.package-data]
"estim8" = [
"py.typed",
]
[project.urls]
GitHub = "https://github.com/JuBiotech/estim8"