forked from gbouvignies/ChemEx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.23 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
[tool.poetry]
name = "chemex"
version = "2022.0.0"
description = "ChemEx is an analysis program for chemical exchange detected by NMR"
authors = ["Guillaume Bouvignies <gbouvignies@gmail.com>"]
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.3"
scipy = "^1.9.1"
matplotlib = "^3.5.3"
lmfit = "^1.0.3"
pydantic = "^1.10.2"
cachetools = "^5.2.0"
rich = "^12.5.1"
tomli = "^2.0.1"
rapidfuzz = "^2.8.0"
[tool.poetry.dev-dependencies]
pre-commit = "^2.17.0"
flake8 = "^4.0.1"
recommonmark = "^0.7.1"
mypy = "^0.931"
devtools = "^0.8.0"
types-toml = "^0.10.4"
types-cachetools = "^4.2.9"
[tool.poetry.scripts]
chemex = "chemex.chemex:main"
[tool.black]
target-version = ['py39']
[tool.mypy]
plugins = ["pydantic.mypy", "numpy.typing.mypy_plugin"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"