-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
57 lines (52 loc) · 1.31 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
49
50
51
52
53
54
55
56
57
[project]
name = "pyenzyme"
version = "2.2.2"
description = "A Python library for EnzymeML"
authors = [{ name = "Jan Range", email = "range.jan@web.de" }]
requires-python = ">=3.11,<4"
readme = "README.md"
license = { text = "BSD-2-Clause" }
dependencies = [
"python-libsbml>=5.20.2,<6",
"rich>=13.7.1,<14",
"pandas>=2.0.0",
"pydantic-xml>=2.17.0,<3",
"loguru>=0.7.2,<0.8",
"rdflib==7.0.0",
"sympy>=1.12.1,<2",
"fastobo>=0.13.0,<0.14",
"pymetadata>=0.5.3,<0.6",
"httpx>=0.27",
"mdmodels>=0.2.4,<0.3",
"joblib>=1.5.0,<2",
"bokeh>=3.7.3,<4",
"matplotlib>=3.10,<4",
"dill>=0.3.9,<0.5.0",
]
[project.urls]
Repository = "https://github.com/EnzymeML/pyenzyme"
[project.optional-dependencies]
pysces = ["pysces>=1.2.3,<2", "lmfit>=1.3.3,<2"]
excel = ["openpyxl>=3.1.4,<4"]
tests = [
"pytest>=8.2.2,<9",
"pytest-httpx>=0.35.0,<0.36",
"pytest-sugar>=1.1.1",
]
v1 = [
"seaborn>=0.13.2,<0.14",
"numexpr>=2.11.0,<3",
"python-libcombine>=0.2.20,<0.3",
"deepdiff>=8.5.0,<9",
"deprecation>=2.1.0,<3",
]
copasi = ["copasi-basico>=0.85"]
[tool.uv]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[[tool.uv.index]]
explicit = true
name = "testpypi"
publish-url = "https://test.pypi.org/legacy/"
url = "https://test.pypi.org/simple/"