forked from quant-aq/py-smps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (34 loc) · 854 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
[tool.poetry]
name = "py-smps"
version = "2.1.0a2"
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"
packages = [
{ include="smps", from="." }
]
[tool.poetry.dependencies]
python = ">=3.8, <3.12"
statsmodels = "^0.13"
seaborn = "^0.11.0"
joblib = "^1.0"
requests = "^2.24"
scipy = "^1.9"
numpy = "^1.23.2"
pandas = "^1.4"
setuptools = "^65.0"
[tool.poetry.dev-dependencies]
pytest = "^6.0.1"
coverage = "^5.2.1"
pytest-coverage = "^0.0"
sphinx = "^3.2.1"
toml = "^0.10.1"
furo = "^2021.4.11-beta.34"
sphinx-copybutton = "^0.5.0"
myst-parser = "^0.17.0"
numpydoc = "^1.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"