-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.14 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 = "py-smps"
version = "2.1.0a6"
description = "A simple python library to import and visualize data from particle sizing instruments"
authors = ["David H Hagan <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/quant-aq/py-smps"
homepage = "https://github.com/quant-aq/py-smps"
documentation = "https://github.com/quant-aq/py-smps"
packages = [
{ include="smps", from="." }
]
[tool.poetry.dependencies]
python = ">=3.8, <3.12"
pandas = ">=1.2"
scipy = ">1.7"
setuptools = ">48.0"
joblib = "^1.3"
seaborn = ">=0.12"
matplotlib = ">=3.4,!=3.6.1"
numpy = ">1.20,!=1.24.0"
statsmodels = ">=0.13.0"
requests = ">=2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^6.0"
coverage = "^5.2"
pytest-coverage = "^0.0"
sphinx = "^4.5"
toml = "^0.10.1"
furo = "^2022.1"
sphinx-copybutton = "^0.5.0"
myst-parser = "^0.17.0"
numpydoc = "^1.2"
sphinx-issues = "^3.0.1"
nbsphinx = "^0.9.2"
sphinx-gallery = "^0.13.0"
ipykernel = "^6.24.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/quant-aq/py-smps/issues"