-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (73 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (73 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[project]
name = "herecrm"
requires-python = ">=3.12"
version = "0.1.0"
description = "A CRM right in Whatsapp!"
dependencies = [
"fastapi[standard]",
"uvicorn[standard]",
"requests",
"httpx",
"pydantic",
"pydantic-settings",
"python-dotenv",
"sqlalchemy",
"aiosqlite",
"openai",
"pytest",
"pytest-asyncio",
"PyYAML",
"streamlit>=1.53.0",
"pandas>=2.3.3",
"openpyxl>=3.1.5",
"alembic>=1.18.1",
"python-multipart",
"boto3",
"twilio>=9.9.1",
"weasyprint",
"jinja2",
"spec-kitty-cli>=0.11.1",
"stripe>=14.2.0",
"python-quickbooks>=0.9.1",
"apscheduler",
"smsutil",
"sqlcipher3>=0.6.2",
"google-api-python-client>=2.188.0",
"google-auth-oauthlib>=1.2.4",
"google-auth>=2.47.0",
"clerk-backend-api>=4.2.0",
"pyjwt>=2.10.1",
"cryptography>=45.0.7",
"svix>=1.63.0",
"posthog>=7.6.0",
"schemathesis>=4.9.4",
]
# Optional dependencies for QuickBooks integration:
# pysqlcipher3: Requires system sqlcipher library
# Ubuntu/Debian: sudo apt-get install sqlcipher
# Then: pip install pysqlcipher3
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
addopts = "-m 'not llm_validation and not schemathesis'"
markers = [
"llm_validation: expensive tests that run against the real LLM (nightly)",
"schemathesis: slow API schema validation tests"
]
[tool.pyrefly]
import-roots = ["."]
search-paths = ["."]
project-includes = [
"**/*.py*",
"**/*.ipynb",
]
[tool.fastapi-cli]
# This tells 'fastapi dev' exactly what to run by default
path = "src/main.py"
[tool.uvicorn]
# This helps when running via uvicorn directly
reload-dirs = ["src"]
reload-excludes = ["*/verify_*.py"]