generated from FAIRChemistry/sdrdm-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (36 loc) · 1.06 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
[tool.poetry]
name = "calipytion"
version = "0.9.2"
description = "Tool for creating standard curves and concentration calculations."
authors = ["haeussma <83341109+haeussma@users.noreply.github.com>"]
license = "MIT License"
readme = "Readme.md"
packages = [{include = "calipytion"}]
[tool.poetry.dependencies]
python = "^3.10"
plotly = "^5.18.0"
numpy = "^1.26.4"
lmfit = "^1.2.2"
sympy = "^1.12"
matplotlib = ">=3.7"
nbformat = "^5.10.4"
pydantic = "^2.4"
rich = "^13"
pandas = { version = ">=2.0", extras = ["excel"] } # Due to Colab
toml = "^0.10.2"
pyenzyme = { git = "https://github.com/EnzymeML/PyEnzyme.git", branch = "v2-migration" }
httpx = ">=0.27.0"
mdmodels = { git = "https://github.com/FAIRChemistry/py-mdmodels.git", branch = "master" }
[tool.poetry.group.dev.dependencies]
mkdocs-material = "^9.5.8"
pytest = "^8.0.0"
devtools = "^0.12.2"
notebook = "<7"
mkdocs-plotly-plugin = "^0.1.3"
pandas-stubs = "^2.2.2.240807"
nbval = "^0.11.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
ignore_missing_imports = true