-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
89 lines (72 loc) · 2.11 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[tool.logging]
version = 1
incremental = true
[tool.logging.formatters.formatter]
format = "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
default_time_format = "%H:%M:%S"
[tool.logging.root]
# The root logger level holds for every module that doesn't have its own level.
level = "DEBUG"
[tool.logging.loggers."__main__"]
# The special module __main__ is the script currently being executed.
level = "DEBUG"
[tool.logging.loggers."jax"]
level = "INFO"
[tool.logging.loggers."matplotlib"]
level = "INFO"
[tool.ruff]
# Set the maximum line length to 79.
line-length = 127
[tool.ruff.format]
docstring-code-format = true # code snippets in docstrings will be formatted
[tool.ruff.lint]
# Add the `line-too-long` rule to the enforced rule set.
extend-select = ["E501","F405","E402"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["jaxkineticmodel"]
[tool.my_project]
project_root = "."
[project]
name = "jaxkineticmodel"
version = "0.0.1"
readme = "README.md"
requires-python = ">=3.9"
description = "A tool for building, training, and simulating metabolic kinetic models in Jax/Diffrax"
dependencies = [
"diffrax>=0.6.0",
"equinox>=0.11.8",
"functions==0.7.0",
"jax==0.4.35",
"jaxlib==0.4.35",
"matplotlib>=3.9.2",
#"numpy>=2.0.2",
"optax==0.2.3",
"pandas>=1.1.4",
"pytest>=8.3.4",
"scikit_learn==1.5.2",
"scipy>=1.11.1",
"sympy>=1.13.3",
"tomli>=2.1.0 ; python_version<'3.11'",
"python-libsbml==5.20.4",
"scikit-optimize>=0.10.2",
"markdown-include>=0.8.1",
"xgboost>=2.1.3"
]
authors = [
{name="Paul van Lent", email="p.h.vanlent@tudelft.nl"},
{name="Léon Planken",email="l.r.planken@tudelft.nl"},
{name="Thomas Abeel", email="t.abeel@tudelft.nl"},
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache License",
"Operating System :: OS Independent",
]
#[project.urls]
#Homepage = "https://github.com/pypa/sampleproject"
#Issues = "https://github.com/pypa/sampleproject/issues"
[project.optional-dependencies]
test = ["tellurium>=2.2.10"]