crcdng
commited on
Commit
·
e338558
1
Parent(s):
13860f3
adding local dev via uv
Browse files- .gitignore +4 -1
- pyproject.toml +13 -0
.gitignore
CHANGED
|
@@ -1 +1,4 @@
|
|
| 1 |
-
.env
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.env
|
| 2 |
+
uv.lock
|
| 3 |
+
.python-version
|
| 4 |
+
.gitignore
|
pyproject.toml
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "doomsweek-calculator"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Calculate the Probability of Doom based on NASA data"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.10"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"anthropic>=0.75.0",
|
| 9 |
+
"dotenv>=0.9.9",
|
| 10 |
+
"gradio[mcp]>=6.0.1",
|
| 11 |
+
"mcp>=1.22.0",
|
| 12 |
+
"requests>=2.32.5",
|
| 13 |
+
]
|