Merge pull request #672 from manojag115/feat/teams-connector

Update installation documentation and fix pyproject file for pip install
This commit is contained in:
Rohan Verma 2026-01-07 17:47:32 -08:00 committed by GitHub
commit 33ab74f698
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 60 additions and 5 deletions

View file

@ -2,7 +2,6 @@
name = "surf-new-backend"
version = "0.0.10"
description = "SurfSense Backend"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"alembic>=1.13.0",
@ -153,3 +152,11 @@ line-ending = "auto"
known-first-party = ["app"]
force-single-line = false
combine-as-imports = true
[tool.setuptools.packages.find]
where = ["."]
include = ["app*", "alembic*"]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"