Skip to content

Commit 9d5dfda

Browse files
committed
Add skeleton
1 parent d0cb64c commit 9d5dfda

File tree

4 files changed

+34
-1
lines changed

4 files changed

+34
-1
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,9 @@ cython_debug/
165165
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
166166
# and can be added to the global gitignore or merged into this file. For a more nuclear
167167
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
168-
#.idea/
168+
.idea/
169169

170170
# PyPI configuration file
171171
.pypirc
172+
173+
src/lsl_ripple/__version__.py

pyproject.toml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[project]
2+
name = "lsl-ripple"
3+
dynamic = ["version"]
4+
description = "Application to stream data from Ripple Trellis over LabStreamingLayer"
5+
readme = "README.md"
6+
authors = [
7+
{ name = "Chadwick Boulay", email = "[email protected]" }
8+
]
9+
requires-python = ">=3.9,<3.12"
10+
dependencies = []
11+
12+
[project.scripts]
13+
lsl-ripple = "lsl_ripple.cli:main"
14+
15+
[build-system]
16+
requires = ["hatchling", "hatch-vcs"]
17+
build-backend = "hatchling.build"
18+
19+
[tool.hatch.version]
20+
source = "vcs"
21+
22+
[tool.hatch.build.hooks.vcs]
23+
version-file = "src/lsl_ripple/__version__.py"

src/lsl_ripple/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def main() -> None:
2+
print("Hello from lsl-ripple!")

src/lsl_ripple/cli.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
def main():
2+
print("Hello from lsl-ripple!")
3+
4+
5+
if __name__ == "__main__":
6+
main()

0 commit comments

Comments
 (0)