peninsula123 commited on
Commit
b7280c1
·
1 Parent(s): 5c90dd1

feat(main): add uv init

Browse files
Files changed (6) hide show
  1. .gitignore +20 -0
  2. .python-version +1 -0
  3. README.md +0 -0
  4. main.py +6 -0
  5. mise.toml +3 -0
  6. pyproject.toml +7 -0
.gitignore ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /bin
2
+ bin
3
+ .vscode
4
+ .idea
5
+ tmp
6
+ .venv
7
+ plans
8
+ notes
9
+
10
+ .superpowers
11
+
12
+ .codex
13
+
14
+ __pycache__/
15
+
16
+ deploy
17
+
18
+ node_modules
19
+ dist
20
+ *.tsbuildinfo
.python-version ADDED
@@ -0,0 +1 @@
 
 
1
+ 3.12
README.md ADDED
File without changes
main.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ def main():
2
+ print("Hello from open-cortex!")
3
+
4
+
5
+ if __name__ == "__main__":
6
+ main()
mise.toml ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ [tools]
2
+ node = "24"
3
+ uv = "0.11"
pyproject.toml ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "open-cortex"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.12"
7
+ dependencies = []