-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 880 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 880 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
30
31
32
33
34
35
36
37
38
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "py-shr-parser"
version = "1.0.0"
authors = [
{ name = "Tom Schmitz", email="[email protected]" },
]
description = "Python library for parsing Signal Hound SHR files"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"matplotlib",
]
license = "BSD-3-Clause"
keywords = ["SHR", "Signal Hound",]
readme = "README.rst"
[project.urls]
Homepage = "https://github.com/WiseLabCMU/py-shr-parser"
"Bug Tracker" = "https://github.com/WiseLabCMU/py-shr-parser/issues"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]