-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
48 lines (43 loc) · 1.07 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
[tool.poetry]
name = "msmetaenhancer"
version = "0.4.0"
description = "Repository for tool that adds more annotations (e.g. SMILES, InChI, CAS number) to MSP files (Python version)."
authors = [
"Helge Hecht <helge.hecht@recetox.muni.cz>",
"Matej Trojak <matej.trojak@recetox.muni.cz>"
]
license = "MIT"
readme = "README.md"
packages = [
{ include = "MSMetaEnhancer" },
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
matchms = "^0.14"
pandas = "^2.2.1"
scipy = "^1.12.0"
requests = "^2.31.0"
aiohttp = "^3.9.3"
asyncstdlib = "^3.12.0"
frozendict = "^2.4.0"
twine = "^5.0.0"
tabulate = "^0.9.0"
rdkit = "^2023.9.5"
multidict = "^6.0.5"
aiocircuitbreaker = "^2.0.0"
openpyxl = "^3.1.2"
[tool.poetry.group.dev.dependencies]
mock = "^5.1.0"
pytest = "^8.0.2"
pytest-cov = "^4.1.0"
pytest-aiohttp = "^1.0.5"
pytest-dependency = "^0.6.0"
myst-parser = "^2.0.0"
flake8 = "^7.0.0"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
sphinx-rtd-theme = "^2.0.0"
readthedocs-sphinx-ext = "^2.2.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"