Spaces:
Running
Running
Juan David Alzate Cardona
commited on
Commit
·
bd4562c
1
Parent(s):
66685dd
Init uv project
Browse files- .python-version +1 -0
- README.md +0 -0
- main.py +6 -0
- pyproject.toml +10 -0
- uv.lock +0 -0
.python-version
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
3.13
|
README.md
ADDED
File without changes
|
main.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
def main():
|
2 |
+
print("Hello from mcp-sentiment!")
|
3 |
+
|
4 |
+
|
5 |
+
if __name__ == "__main__":
|
6 |
+
main()
|
pyproject.toml
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "mcp-sentiment"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = "Add your description here"
|
5 |
+
readme = "README.md"
|
6 |
+
requires-python = ">=3.13"
|
7 |
+
dependencies = [
|
8 |
+
"gradio[mcp]>=5.38.0",
|
9 |
+
"textblob>=0.19.0",
|
10 |
+
]
|
uv.lock
ADDED
The diff for this file is too large to render.
See raw diff
|
|