Spaces:
Runtime error
Runtime error
| #--file path and name: project.toml | |
| [build-system] | |
| requires = ["setuptools>=61.0"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "astoria_open_backend" | |
| version = "0.1.0" | |
| authors = [ | |
| { name="Your Name", email="[email protected]" }, | |
| ] | |
| description = "Backend for the Astoria Open application" | |
| readme = "README.md" | |
| requires-python = ">=3.9" | |
| classifiers = [ | |
| "Programming Language :: Python :: 3", | |
| "License :: OSI Approved :: MIT License", | |
| "Operating System :: OS Independent", | |
| ] | |
| dependencies = [ | |
| # We will let requirements.txt handle the main dependencies | |
| ] | |
| [tool.setuptools.packages.find] | |
| where = ["."] | |
| include = ["app*", "utils*"] | |
| #--end-of-file | |