-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (38 loc) · 1.02 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
[build-system]
requires = [
"setuptools"
]
build-backend = "setuptools.build_meta"
[project]
name = "physio_cassette"
version = "0.2.7"
description = "Storage structures for signals (mostly physiological data), metadata and event annotations"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
]
keywords = ['data storage', 'physiological signals', 'event records']
dependencies = [
"numpy>1.20",
"openpyxl>=3.0.3",
"openpyxl-dictreader>=0.1.9",
"xlrd>=2.0.1",
"pyedflib>=0.1.28",
"pymatreader",
"python-dateutil>=2.8.2",
"scipy>1.9",
"traces>=0.5.1",
"wfdb>=4.1.2",
"xmltodict>=0.13.0"
]
[project.urls]
homepage = "https://github.com/LucaCerina/physio-cassette"
"Bug Tracker" = "https://github.com/LucaCerina/physio-cassette/issues"
[metadata]
author = "LucaCerina"
author_email = "[email protected]"
license = "MIT"