Skip to content

Commit fc61e02

Browse files
committed
init
0 parents  commit fc61e02

File tree

8 files changed

+2534
-0
lines changed

8 files changed

+2534
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Python-generated files
2+
__pycache__/
3+
*.py[oc]
4+
build/
5+
dist/
6+
wheels/
7+
*.egg-info
8+
9+
# Virtual environments
10+
.venv

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.11

README.md

Whitespace-only changes.

activate.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
echo "hello"

hello.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
def main():
2+
print("Hello from mlenv!")
3+
4+
5+
if __name__ == "__main__":
6+
main()

pyproject.toml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[project]
2+
name = "mlenv"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
readme = "README.md"
6+
requires-python = ">=3.11"
7+
dependencies = [
8+
"fastapi[standard]>=0.115.6",
9+
"gradio>=5.3.0",
10+
"huggingface-hub>=0.26.5",
11+
"ipykernel>=6.29.5",
12+
"mplfinance>=0.12.10b0",
13+
"numpy>=2.2.0",
14+
"opencv-python>=4.10.0.84",
15+
"pandas>=2.2.3",
16+
"pep8>=1.7.1",
17+
"pygame>=2.6.1",
18+
"pytest>=8.3.4",
19+
"torch>=2.5.1",
20+
"torchaudio>=2.5.1",
21+
"torchvision>=0.20.1",
22+
"transformers>=4.47.0",
23+
"ultralytics>=8.3.23",
24+
]

uv.lock

Lines changed: 2492 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)