-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
73 lines (64 loc) · 1.41 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "chemex"
description = "An analysis program for chemical exchange detected by NMR"
authors = [
{ name = "Guillaume Bouvignies", email = "[email protected]" },
]
dependencies = [
"numpy>=1.26.4",
"scipy>=1.13.0",
"matplotlib>=3.8.4",
"lmfit>=1.2.2",
"pydantic>=2.6.4",
"cachetools>=5.3.3",
"rich>=13.7.1",
"rapidfuzz>=3.7.0",
"emcee>=3.1.4",
"numdifftools>=0.9.41",
"annotated-types>=0.6.0",
]
requires-python = ">=3.11,<3.13"
readme = "README.md"
license = { text = "GPL-3.0-or-later" }
dynamic = ["version"]
[project.urls]
Homepage = "http://gbouvignies.github.io/ChemEx/"
Documentation = "http://gbouvignies.github.io/ChemEx/"
Repository = "https://github.com/gbouvignies/chemex"
Changelog = "https://github.com/gbouvignies/chemex/releases"
[project.scripts]
chemex = "chemex.chemex:main"
[tool.pdm.version]
source = "scm"
[tool.pdm.dev-dependencies]
test = ["pytest>=7.4.3"]
lint = ["ruff>=0.1.3"]
[tool.ruff]
select = ["ALL"]
ignore = [
"ANN101",
"ANN102",
"COM812",
"ISC001",
"TCH001",
"TCH002",
"TCH003",
"D100",
"D101",
"D102",
"D103",
"D104",
"D105",
"D107",
"S311",
]
[tool.ruff.isort]
known-first-party = ["chemex"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.pyright]
venvPath = "."
venv = ".venv"