ppak10 commited on
Commit
87b687b
·
1 Parent(s): af78b67

Initializes repository

Browse files
Files changed (4) hide show
  1. .python-version +1 -0
  2. README.md +0 -0
  3. main.py +6 -0
  4. pyproject.toml +7 -0
.python-version ADDED
@@ -0,0 +1 @@
 
 
1
+ 3.10
README.md ADDED
File without changes
main.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ def main():
2
+ print("Hello from rocketreviews!")
3
+
4
+
5
+ if __name__ == "__main__":
6
+ main()
pyproject.toml ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "rocketreviews"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.10"
7
+ dependencies = []