-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
42 lines (37 loc) · 1.13 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
[tool.poetry]
name = "devicely"
version = "1.1.1"
description = "Devicely: A Python package for reading, timeshifting and writing sensor data."
authors = [
"Ariane Morassi Sasso <[email protected]>",
"Jost Morgenstern <[email protected]>",
"Felix Musmann <[email protected]>",
"Bert Arnrich <[email protected]>"
]
license = "MIT"
repository = "https://github.com/hpi-dhc/devicely"
documentation = "https://hpi-dhc.github.io/devicely"
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
]
readme='README.md'
[tool.poetry.dependencies]
python = "^3.7.1"
pandas = "^1.3.0"
pyEDFlib = "^0.1.22"
numpy = "^1.21.1"
importlib-metadata = {version = "^1.0", python = "<3.8"}
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
coverage = "^5.5"
ipykernel = "^6.0.3"
jupyter = "^1.0.0"
nbsphinx = "^0.8.6"
sphinx-rtd-theme = "^0.5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"