File tree Expand file tree Collapse file tree 4 files changed +34
-1
lines changed
Expand file tree Collapse file tree 4 files changed +34
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 1+ def main () -> None :
2+ print ("Hello from lsl-ripple!" )
Original file line number Diff line number Diff line change 1+ def main ():
2+ print ("Hello from lsl-ripple!" )
3+
4+
5+ if __name__ == "__main__" :
6+ main ()
You can’t perform that action at this time.
0 commit comments