-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 878 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 878 Bytes
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
[tool.poetry]
name = "succulent"
version = "0.4.3"
description = "Collect POST requests easily"
license = "MIT"
authors = ["Iztok Fister Jr. <iztok@iztok-jr-fister.eu>", "Tadej Lahovnik <lahovnik.tadej@gmail.com>"]
keywords = ['data collection', 'data science', 'ESP32', 'sensor measurements', 'smart agriculture', 'smartwatch']
homepage = "https://github.com/firefly-cpp/succulent"
repository = "https://github.com/firefly-cpp/succulent"
documentation = "https://succulent.readthedocs.io/en/latest/"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^2.0.1"
pyyaml = "^6.0"
flask = ">=2.3.2,<4.0.0"
lxml = "^5.2.2"
numpy = "2.1.0"
[tool.poetry.dev-dependencies]
pytest = "^7.4.2"
Sphinx = "^4.4.0"
sphinx-rtd-theme = "^1.0.0"
sphinxcontrib-bibtex = "^2.4.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"