-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (41 loc) · 1.4 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 = "tsdf"
version = "0.6.0"
description = "A Python library that provides methods for encoding and decoding TSDF (Time Series Data Format) data, which allows you to easily create, manipulate and serialize TSDF files in your Python code."
authors = ["Peter Kok <p.kok@esciencecenter.nl>",
"Pablo Rodríguez <p.rodriguez-sanchez@esciencecenter.nl>",
"Vedran Kasalica <v.kaslica@esciencecenter.nl>"]
license = "Apache-2.0"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
readme = "README.md"
keywords = ["Time Series Data Format (TSDF)", "binary data", "digital sensors"]
repository = "https://github.com/biomarkersParkinson/tsdf"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.24.1"
pandas = "^2.1.3"
[tool.poetry.group.dev.dependencies]
coverage = "^7.0.0"
matplotlib = "^3.6.3"
pytype = "^2024.4.11"
myst-parser = "^3.0.1"
[tool.poetry.group.testing.dependencies]
ipykernel = "^6.19.2"
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
pytest-datadir = "^1.4.1"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.3.7"
myst-nb = "^1.1.0"
sphinx-autoapi = "^3.1.2"
sphinx-rtd-theme = "^2.0.0"
[tool.poetry.scripts]
validate-tsdf = "tsdf.validator:main"
#docs = "sphinx.cmd.build:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"