Sanchit Verma commited on
Commit
60d960d
·
0 Parent(s):

Add initial project structure with .gitignore, main.py, and pyproject.toml

Browse files
Files changed (4) hide show
  1. .gitignore +101 -0
  2. README.md +0 -0
  3. main.py +6 -0
  4. pyproject.toml +7 -0
.gitignore ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Python bytecode and cache
10
+ __pycache__/
11
+ *.py[cod]
12
+ *$py.class
13
+
14
+ # Distribution / packaging
15
+ .Python
16
+ build/
17
+ develop-eggs/
18
+ dist/
19
+ downloads/
20
+ eggs/
21
+ .eggs/
22
+ lib/
23
+ lib64/
24
+ parts/
25
+ sdist/
26
+ var/
27
+ wheels/
28
+ pip-wheel-metadata/
29
+ share/python-wheels/
30
+ *.egg-info/
31
+ .installed.cfg
32
+ *.egg
33
+ MANIFEST
34
+ /.python-version
35
+
36
+ # PyInstaller
37
+ *.manifest
38
+ *.spec
39
+
40
+ # Installer logs
41
+ pip-log.txt
42
+ pip-delete-this-directory.txt
43
+
44
+ # Unit test / coverage reports
45
+ htmlcov/
46
+ .tox/
47
+ .nox/
48
+ .coverage
49
+ .coverage.*
50
+ .cache
51
+ nosetests.xml
52
+ coverage.xml
53
+ *.cover
54
+ .hypothesis/
55
+ .pytest_cache/
56
+
57
+ # mypy
58
+ .mypy_cache/
59
+ .dmypy.json
60
+ dmypy.json
61
+
62
+ # Pyre type checker
63
+ .pyre/
64
+
65
+ # pytype
66
+ .pytype/
67
+
68
+ # Cython debug symbols
69
+ cython_debug/
70
+
71
+ # Virtual environments
72
+ .venv/
73
+ venv/
74
+ ENV/
75
+ env/
76
+ env.bak/
77
+ venv.bak/
78
+
79
+ # Jupyter Notebook
80
+ .ipynb_checkpoints
81
+
82
+ # PyCharm
83
+ .idea/
84
+ *.iml
85
+ *.ipr
86
+ *.iws
87
+
88
+ # VS Code
89
+ .vscode/
90
+
91
+ # macOS
92
+ .DS_Store
93
+
94
+ # Windows
95
+ Thumbs.db
96
+ ehthumbs.db
97
+ Desktop.ini
98
+
99
+ # uv package manager
100
+ .uv/
101
+ uv.lock
README.md ADDED
File without changes
main.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ def main():
2
+ print("Hello from llmates!")
3
+
4
+
5
+ if __name__ == "__main__":
6
+ main()
pyproject.toml ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "llmates"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.9"
7
+ dependencies = []