warbler-cda / pyproject.toml
Bellok's picture
Upload folder using huggingface_hub
0ccf2f0 verified
raw
history blame
2.36 kB
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "warbler-cda"
version = "0.1.0"
description = "Warbler CDA - Cognitive Development Architecture RAG System with FractalStat multi-dimensional addressing"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Tiny Walnut Games", email = "contact@tinywalnutgames.com"}
]
keywords = ["rag", "retrieval", "semantic-search", "fractalstat", "embeddings", "ai", "ml"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"pydantic>=2.0.0",
"numpy>=1.20.0",
"torch>=2.0.0",
"transformers>=4.30.0",
"sentence-transformers>=2.2.0",
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"click>=8.1.0",
"requests>=2.31.0",
"datasets>=2.12.0",
"pyyaml>=6.0.0",
]
[project.optional-dependencies]
openai = [
"openai>=1.0.0",
]
performance = [
"faiss-cpu>=1.7.0",
"orjson>=3.9.0",
]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"black>=22.0.0",
"flake8>=4.0.0",
"mypy>=0.950",
]
[project.urls]
Homepage = "https://github.com/tiny-walnut-games/the-seed"
Documentation = "https://github.com/tiny-walnut-games/the-seed/blob/main/README.md"
Repository = "https://github.com/tiny-walnut-games/the-seed"
Issues = "https://github.com/tiny-walnut-games/the-seed/issues"
[project.scripts]
warbler-api = "warbler_cda.api.service:main"
warbler-cli = "warbler_cda.api.cli:cli"
warbler-ingest = "warbler_cda.utils.hf_warbler_ingest:cli"
[tool.setuptools]
packages = ["warbler_cda", "warbler_cda.embeddings", "warbler_cda.api", "warbler_cda.utils"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = ["-v", "--tb=short"]
[tool.black]
line-length = 100
target-version = ["py39"]
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true