-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.02 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
[tool.poetry]
name = "chemex"
version = "2022.1.0"
description = "ChemEx is an analysis program for chemical exchange detected by NMR"
authors = ["Guillaume Bouvignies <[email protected]>"]
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/gbouvignies/chemex"
homepage = "http://gbouvignies.github.io/ChemEx/"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
numpy = "^1.23.4"
scipy = "^1.9.3"
matplotlib = "^3.6.1"
lmfit = "^1.0.3"
pydantic = "^1.10.2"
cachetools = "^5.2.0"
rich = "^12.6.0"
tomli = "^2.0.1"
rapidfuzz = "^2.11.1"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.17.0"
types-cachetools = "^4.2.9"
[tool.poetry.scripts]
chemex = "chemex.chemex:main"
[tool.black]
target-version = ['py39']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"