Skip to content

Commit 8f790c0

Browse files
committed
Initial import
0 parents  commit 8f790c0

5 files changed

Lines changed: 86 additions & 0 deletions

File tree

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Environment files
2+
.vscode
3+
.venv
4+
5+
# Python temp files
6+
__pycache__
7+
*.pyc
8+
*.egg-info
9+
dist

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 harp-tech and Contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include LICENSE
2+
include README.md

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# harp-python
2+
3+
A low-level interface to data collected with the [Harp](https://harp-tech.org/) binary protocol.

pyproject.toml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
[project]
2+
name = "harp-python"
3+
authors = [
4+
{name = "Goncalo Lopes", email = "g.lopes@neurogears.org"}
5+
]
6+
description = "A low-level interface to loading binary Harp protocol data"
7+
readme = "README.md"
8+
requires-python = ">=3.9.0"
9+
dynamic = ["version"]
10+
license = {text = "MIT License"}
11+
12+
dependencies = [
13+
"pydantic-yaml",
14+
"pandas"
15+
]
16+
17+
classifiers = [
18+
"Development Status :: 4 - Beta",
19+
"Programming Language :: Python",
20+
"Programming Language :: Python :: 3",
21+
"Programming Language :: Python :: 3.9",
22+
"Programming Language :: Python :: 3.10",
23+
"Operating System :: OS Independent",
24+
"License :: OSI Approved :: MIT License",
25+
]
26+
27+
[project.urls]
28+
"Bug Tracker" = "https://github.com/harp-tech/harp-python/issues"
29+
"Source Code" = "https://github.com/harp-tech/harp-python"
30+
31+
[project.optional-dependencies]
32+
dev = [
33+
"datamodel-code-generator",
34+
"setuptools_scm"
35+
]
36+
37+
[build-system]
38+
requires = [
39+
"setuptools>=45",
40+
"wheel",
41+
"setuptools_scm[toml]>=6.2",
42+
]
43+
build-backend = "setuptools.build_meta"
44+
45+
[tool.setuptools]
46+
include-package-data = true
47+
48+
[tool.setuptools.packages.find]
49+
include = ["harp*"]
50+
51+
[tool.setuptools_scm]

0 commit comments

Comments
 (0)