-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
60 lines (54 loc) · 1.5 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
[tool.poetry]
name = "peakipy"
version = "2.0.0"
description = "Deconvolute overlapping NMR peaks"
authors = ["Jacob Brady <[email protected]>"]
readme = 'README.md'
repository = "https://github.com/j-brady/peakipy"
homepage = "https://j-brady.github.io/peakipy"
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
license="GNU GPLv3"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
pandas = "^2.1.0"
numpy = "^1.25.2"
matplotlib = "^3.8.2"
PyYAML = "^6.0.1"
nmrglue = "^0.9"
scipy = "^1.11.2"
lmfit = "^1.2.2"
scikit-image = "^0.21.0"
bokeh = "^3.3.4"
numdifftools = "^0.9.39"
Jinja2 = "^3.1.2"
jedi = "^0.19.0"
typer = "^0.9.0"
statsmodels = "^0.13.2"
rich = "^12.5.1"
tqdm = "^4.65.0"
panel = "^1.3.8"
plotly = "^5.18.0"
pydantic = "^2.6.1"
[tool.poetry.scripts]
peakipy = 'peakipy.cli.main:app'
peakipy-edit = 'peakipy.cli.edit_panel:app'
peakipy-check = 'peakipy.cli.check_panel:app'
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
pytest = "^7.4.2"
mkdocs-material = "^8.5.7"
ipython = "^8.15.0"
pre-commit = "^3.6.0"
coverage = "^7.4.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"