Unknown state [2025-08-04]

This commit is contained in:
2025-08-04 22:18:32 -04:00
parent c147c624a7
commit 0596cd07d3
8 changed files with 175 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import sys
import numpy
def main():
print("hello world!")
print(sys.argv)
_, out = sys.argv
with open(out, 'w') as f:
pass
if __name__ == '__main__':
main()

View File

@@ -0,0 +1,6 @@
[project]
name = "zelio-datagen"
version = "0.0.0"
dependencies = [
"numpy"
]