-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 924 Bytes
/
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
[tool.poetry]
name = "py-tofspec"
version = "0.2.1"
description = ""
authors = ["Joe Palmo <jpalmo21@amherst.edu>"]
packages = [
{ include="tofspec", from="." }
]
include = [{path = "tofspec/config/peak-list.yml", format = ["sdist", "wheel"]}, {path = "tofspec/db", format = ["sdist", "wheel"]}]
[tool.poetry.dependencies]
python = "^3.8"
PyYAML = "^6.0"
numpy = "^1.22.3"
pandas = "^1.4.1"
click = "^8.0.4"
h5py = "^3.6.0"
pyarrow = "^7.0.0"
dask = "^2022.4.1"
rich-click = "^1.5.1"
pytz = "^2023.3"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
coverage = "^6.3.2"
pytest-coverage = "^0.0"
Sphinx = "^4.4.0"
toml = "^0.10.2"
furo = "^2022.3.4"
sphinx-copybutton = "^0.5.0"
myst-parser = "^0.17.0"
numpydoc = "^1.2"
sphinx-togglebutton = "^0.3.2"
sphinx-click = "^4.3.0"
[tool.poetry.scripts]
tofspec = "tofspec.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"