-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
46 lines (38 loc) · 960 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
43
44
45
46
[tool.poetry]
name = "pyhydrophone"
version = "0.1.7"
description = "python package to read and calibrate hydrophone data"
authors = ["Clea Parcerisas <[email protected]>"]
license = "OSI Approved :: MIT License"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8, <3.12.0"
pandas = "^2.0.2"
requests = "^2.31.0"
scipy = "1.10.0"
soundfile = "^0.12.1"
# Testing tools
openpyxl = "^3.1.2"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pyyaml = "^6.0"
pytest = "^7.3.1"
coverage = "^7.2.5"
python-dotenv = "^1.0.0"
pytest-cov = "^4.1.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "6.1.2"
numpydoc = "^1.5.0"
sphinx-rtd-theme = "^1.2.2"
sphinx-gallery = "^0.13.0"
pillow = "^10.0.0"
matplotlib = "^3.7.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests",]
pythonpath = ["."]