innit commit
This commit is contained in:
commit
df67db7c00
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
venv/
|
||||||
|
__pycache__/
|
||||||
|
build/
|
||||||
|
nut.egg-info/
|
||||||
3
nut/__init__.py
Normal file
3
nut/__init__.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
"""nut package."""
|
||||||
|
|
||||||
|
__version__ = "0.1.0"
|
||||||
11
nut/__main__.py
Normal file
11
nut/__main__.py
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
import sys
|
||||||
|
|
||||||
|
|
||||||
|
def main() -> int:
|
||||||
|
for arg in sys.argv[1:]:
|
||||||
|
print(arg)
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
raise SystemExit(main())
|
||||||
Loading…
x
Reference in New Issue
Block a user