Spaces:
Sleeping
Sleeping
Akshay Bhardwaj
commited on
Commit
·
0622f25
0
Parent(s):
add: initial code structure
Browse files- .gitignore +10 -0
- .python-version +1 -0
- README.md +0 -0
- pyproject.toml +11 -0
- uv.lock +0 -0
.gitignore
ADDED
@@ -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
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
3.13
|
README.md
ADDED
File without changes
|
pyproject.toml
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "equity-analyzer"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = "Add your description here"
|
5 |
+
readme = "README.md"
|
6 |
+
requires-python = ">=3.13"
|
7 |
+
dependencies = [
|
8 |
+
"gradio>=5.39.0",
|
9 |
+
"pandas>=2.3.1",
|
10 |
+
"plotly>=6.2.0",
|
11 |
+
]
|
uv.lock
ADDED
The diff for this file is too large to render.
See raw diff
|
|