mirror of
https://github.com/velocitatem/cvfs.git
synced 2026-05-31 16:53:38 +00:00
Initial commit
This commit is contained in:
51
pyproject.toml
Normal file
51
pyproject.toml
Normal file
@@ -0,0 +1,51 @@
|
||||
[build-system]
|
||||
requires = ["setuptools>=69", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "ultiplate"
|
||||
version = "0.1.0"
|
||||
description = "AI-native full-stack template with web, backend, worker, and ML apps"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.12"
|
||||
dependencies = [
|
||||
"anthropic",
|
||||
"beautifulsoup4",
|
||||
"celery[redis]",
|
||||
"fastapi",
|
||||
"flask",
|
||||
"flask-cors",
|
||||
"pydantic",
|
||||
"python-dotenv",
|
||||
"python-logging-loki",
|
||||
"pyyaml",
|
||||
"redis",
|
||||
"requests",
|
||||
"seleniumbase",
|
||||
"streamlit",
|
||||
"tensorboard",
|
||||
"torch",
|
||||
"tqdm",
|
||||
"uvicorn[standard]",
|
||||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
mlflow = ["mlflow"]
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"black",
|
||||
"mypy",
|
||||
"pytest",
|
||||
"ruff",
|
||||
]
|
||||
|
||||
[tool.setuptools]
|
||||
include-package-data = true
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
include = ["alveslib*"]
|
||||
exclude = ["apps*", "ml*", "tests*"]
|
||||
|
||||
[tool.uv]
|
||||
default-groups = ["dev"]
|
||||
Reference in New Issue
Block a user