-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 804 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 804 Bytes
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
[tool.poetry]
name = "molecule-resolver"
version = "0.5.2"
description = "A package to use several web services to find molecule structures, synonyms and CAS."
authors = [
"Simon Muller <simon.mueller@tuhh.de>",
"Kobi Felton <kobi.c.f@gmail.com>",
]
license = "MIT"
readme = "README.md"
packages = [{ include = "moleculeresolver" }]
[tool.poetry.dependencies]
python = "^3.10,<3.14"
prompt-toolkit = "^3.0.39"
regex = ">=2023.10.3"
rdkit = ">=2023.3.3"
requests = "^2.31.0"
openpyxl = "^3.1.2"
tqdm = "^4.66.3"
urllib3 = "^2.0.6"
xmltodict = ">=0.13.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
pytest-mock = "^3.12.0"
sphinx = "^8.1.3"
sphinx-autobuild = "^2024.10.3"
sphinx-autoapi = "^3.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"