astoria-open / pyproject.toml
acadiaway's picture
feat: Integrate Gemini API for SQL generation
03dd94f
raw
history blame contribute delete
671 Bytes
#--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