coral-cyber commited on
Commit ·
473c7b2
1
Parent(s): 9e8ae5e
pyproject.toml added
Browse files- __pycache__/app.cpython-314.pyc +0 -0
- pyproject.toml +3 -0
- server/__init__.py +0 -0
- server/app.py +1 -0
__pycache__/app.cpython-314.pyc
CHANGED
|
Binary files a/__pycache__/app.cpython-314.pyc and b/__pycache__/app.cpython-314.pyc differ
|
|
|
pyproject.toml
CHANGED
|
@@ -12,7 +12,10 @@ dependencies = [
|
|
| 12 |
"uvicorn",
|
| 13 |
"pydantic",
|
| 14 |
"numpy",
|
|
|
|
| 15 |
]
|
|
|
|
|
|
|
| 16 |
|
| 17 |
[tool.setuptools.packages.find]
|
| 18 |
where = ["."]
|
|
|
|
| 12 |
"uvicorn",
|
| 13 |
"pydantic",
|
| 14 |
"numpy",
|
| 15 |
+
"openenv-core>=0.2.0",
|
| 16 |
]
|
| 17 |
+
[project.scripts]
|
| 18 |
+
server = "server.app:app"
|
| 19 |
|
| 20 |
[tool.setuptools.packages.find]
|
| 21 |
where = ["."]
|
server/__init__.py
ADDED
|
File without changes
|
server/app.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
from app import app
|