SaiBon99 commited on
Commit
3834199
·
1 Parent(s): 6e8fb18

Add initial uv configuration and .gitignore

Browse files
Files changed (3) hide show
  1. .gitignore +105 -0
  2. pyproject.toml +6 -0
  3. uv.lock +8 -0
.gitignore ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ PIPFILE.lock
28
+
29
+ # PyInstaller
30
+ *.manifest
31
+ *.spec
32
+
33
+ # Installer logs
34
+ pip-log.txt
35
+ pip-delete-this-directory.txt
36
+
37
+ # Unit test / coverage reports
38
+ htmlcov/
39
+ .tox/
40
+ .nox/
41
+ .coverage
42
+ .coverage.*
43
+ .cache
44
+ nosetests.xml
45
+ coverage.xml
46
+ *.cover
47
+ *.log
48
+ .pytest_cache/
49
+ .hypothesis/
50
+
51
+ # Virtual environments
52
+ venv/
53
+ env/
54
+ ENV/
55
+ env.bak/
56
+ venv.bak/
57
+ .venv/
58
+
59
+ # IDEs
60
+ .vscode/
61
+ .idea/
62
+ *.swp
63
+ *.swo
64
+ *~
65
+ .project
66
+ .pydevproject
67
+ .settings/
68
+ *.sublime-project
69
+ *.sublime-workspace
70
+
71
+ # Jupyter Notebook
72
+ .ipynb_checkpoints
73
+ *.ipynb_checkpoints/
74
+
75
+ # pyenv
76
+ .python-version
77
+
78
+ # Environment variables
79
+ .env
80
+ .env.local
81
+ .env.*.local
82
+
83
+ # macOS
84
+ .DS_Store
85
+ .AppleDouble
86
+ .LSOverride
87
+
88
+ # Windows
89
+ Thumbs.db
90
+ ehthumbs.db
91
+ Desktop.ini
92
+
93
+ # mypy
94
+ .mypy_cache/
95
+ .dmypy.json
96
+ dmypy.json
97
+
98
+ # Pyre type checker
99
+ .pyre/
100
+
101
+ # pytype static type analyzer
102
+ .pytype/
103
+
104
+ # Ruff
105
+ .ruff_cache/
pyproject.toml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "id2223-project"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ requires-python = ">=3.12"
6
+ dependencies = []
uv.lock ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ version = 1
2
+ revision = 3
3
+ requires-python = ">=3.12"
4
+
5
+ [[package]]
6
+ name = "id2223-project"
7
+ version = "0.1.0"
8
+ source = { virtual = "." }