Initial commit

This commit is contained in:
Zoe Roux
2020-11-06 00:05:04 +01:00
commit 8a2ad4a687
8 changed files with 13 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
.idea/
venv/
+1
View File
@@ -0,0 +1 @@
from .autopipe import Autopipe
+5
View File
@@ -0,0 +1,5 @@
#!/usr/bin/env python3
import autopipe
if __name__ == "__main__":
autopipe.Autopipe()
Binary file not shown.
Binary file not shown.
Binary file not shown.
+4
View File
@@ -0,0 +1,4 @@
class Autopipe:
def __init__(self):
print("Hello from autopipe")
pass
+1
View File
@@ -0,0 +1 @@
../autopipe/__main__.py