innit commit

This commit is contained in:
Chipperfluff 2026-04-03 13:16:57 +02:00
commit df67db7c00
4 changed files with 29 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
venv/
__pycache__/
build/
nut.egg-info/

3
nut/__init__.py Normal file
View File

@ -0,0 +1,3 @@
"""nut package."""
__version__ = "0.1.0"

11
nut/__main__.py Normal file
View 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())

11
setup.py Normal file
View File

@ -0,0 +1,11 @@
from setuptools import find_packages, setup
setup(
name="nut",
version="0.1.0",
description="compiler for nut",
author="Chipperfluff",
packages=find_packages(),
python_requires=">=3.8",
)