This repository has no description
1[project]
2name = "tangled-recommendation"
3version = "0.1.0"
4description = "Recommendation + search engine for Tangled (AT Protocol) repo/issue discovery"
5requires-python = ">=3.11"
6dependencies = [
7 "fastapi>=0.115",
8 "uvicorn[standard]>=0.30",
9 "psycopg[binary,pool]>=3.2",
10 "pydantic>=2.7",
11 "python-dotenv>=1.0",
12 "numpy>=1.26",
13]
14
15[project.optional-dependencies]
16dev = [
17 "pytest>=8.0",
18 "httpx>=0.27",
19]
20
21[tool.pytest.ini_options]
22testpaths = ["tests"]
23
24[tool.setuptools.packages.find]
25include = ["app*"]
26
27[build-system]
28requires = ["setuptools>=68"]
29build-backend = "setuptools.build_meta"