-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (83 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
89 lines (83 loc) · 1.85 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
80
81
82
83
84
85
86
87
88
89
[project]
name = "airquality-agent"
version = "2.10.0"
description = "Aeris-AQ (Artificial Environmental Real-time Intelligence System - Air Quality) - Production-ready air quality monitoring and AI assistant with advanced orchestration"
license = {text = "AGPL-3.0"}
authors = [
{name = "Paul Ochieng", email = "ochiengpaul442@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi==0.115.6",
"uvicorn[standard]==0.32.1",
"pydantic==2.10.3",
"openai==2.14.0",
"google-genai==1.57.0",
"google-auth==2.47.0",
"sqlalchemy==2.0.36",
"httpx==0.28.1",
"requests==2.32.5",
"beautifulsoup4==4.12.3",
"python-dotenv==1.0.1",
"pydantic-settings==2.10.1"
]
[tool.black]
line-length = 100
target-version = ['py313']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 100
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
[tool.ruff]
line-length = 100
target-version = "py313"
exclude = [
".git",
".venv",
"__pycache__",
"build",
"dist",
]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = [
"E501", # line too long (handled by black)
"B008", # do not perform function calls in argument defaults
"C901", # too complex
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"] # unused imports
[tool.pytest.ini_options]
filterwarnings = [
"ignore::PendingDeprecationWarning:starlette.*",
"ignore::PendingDeprecationWarning:multipart.*",
]