Update pyproject.toml
Browse files- pyproject.toml +5 -0
pyproject.toml
CHANGED
|
@@ -16,5 +16,10 @@ dependencies = [
|
|
| 16 |
"uvicorn>=0.23.0"
|
| 17 |
]
|
| 18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
[project.scripts]
|
| 20 |
server = "server.app:main"
|
|
|
|
| 16 |
"uvicorn>=0.23.0"
|
| 17 |
]
|
| 18 |
|
| 19 |
+
[tool.setuptools]
|
| 20 |
+
# This tells the builder to ignore the server and templates folders
|
| 21 |
+
packages = []
|
| 22 |
+
py-modules = ["env", "models", "graders", "inference"]
|
| 23 |
+
|
| 24 |
[project.scripts]
|
| 25 |
server = "server.app:main"
|