-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (35 loc) · 1.17 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
[tool.poetry]
name = "mtphandler"
version = "0.2.12"
description = "Python package for processing, enriching, and converting microtiter plate data into standardized EnzymeML time-course data, ready for data science."
authors = ["haeussma <83341109+haeussma@users.noreply.github.com>"]
license = "MIT License"
readme = "README.md"
packages = [{ include = "mtphandler" }]
include = ["mtphandler/units/ontomaps.toml"]
[tool.poetry.dependencies]
python = "^3.10"
sympy = "^1.12"
numpy = "^1.26.4"
plotly = "^5.18.0"
pandas = { version = ">=2.0,<2.2.2", extras = ["excel"] } # Due to Colab
pyenzyme = { git = "https://github.com/EnzymeML/PyEnzyme.git", branch = "v2-migration" }
calipytion = { git = "https://github.com/FAIRChemistry/CaliPytion.git"}
rich = "^13.7.1"
httpx = "^0.27.2"
[tool.poetry.group.dev.dependencies]
mkdocs-material = "^9.5.7"
pytest = "^8.0.0"
devtools = "^0.12.2"
ipykernel = "^6.29.4"
mkdocstrings-python = "^1.11.1"
nbval = "^0.11.0"
mkdocs-jupyter = "^0.25.0"
mkdocs-plotly-plugin = "^0.1.3"
notebook = "<7"
jupyter-contrib-nbextensions = "^0.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
ignore_missing_imports = true