feat: initialize project dependencies with cvxpy, numpy, and requests
Browse files- pyproject.toml +9 -0
- uv.lock +0 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "builderbrain"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
requires-python = ">=3.12"
|
| 5 |
+
dependencies = [
|
| 6 |
+
"cvxpy>=1.3.0",
|
| 7 |
+
"numpy>=1.24.0",
|
| 8 |
+
"requests>=2.28.0",
|
| 9 |
+
]
|
uv.lock
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|