-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.36 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (49 loc) · 1.36 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
[tool.poetry]
name = "fastgram-outreach"
version = "0.1.0"
description = "Instagram Outreach MVP"
authors = ["PyDevDeep"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "~3.13.0"
fastapi = "^0.110.0"
uvicorn = "^0.29.0"
instagrapi = "^2.1.1"
gspread = "^6.1.0"
google-auth = "^2.29.0"
pydantic-settings = "^2.2.1"
python-dotenv = "^1.0.1"
cryptography = ">=47,<49"
httpx = "^0.28.1"
sqlalchemy = "^2.0.49"
asyncpg = "^0.31.0"
alembic = "^1.18.4"
aiofiles = "^25.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
pytest-asyncio = "^0.23.6"
ruff = ">=0.9.0"
pyright = ">=1.1.400"
pre-commit = "^3.7.0"
pytest-cov = "^7.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 100
target-version = "py313"
exclude = [".venv", "__pycache__", "logs"]
[tool.ruff.lint]
select = ["E", "F", "I", "B", "S", "W", "N", "UP", "C4", "SIM", "RUF", "A", "DTZ", "TID", "ASYNC", "PT"]
ignore = ["F401", "E501", "B008", "RUF001", "RUF002", "RUF003", "N815", "S107"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["S101", "S105", "S108"]
"**/tests/*" = ["S101", "S105", "S108"]
[tool.pyright]
include = ["app"]
exclude = ["**/node_modules", "**/.*", "**/__pycache__", "build", "dist", "venv", ".venv"]
pythonVersion = "3.13"
typeCheckingMode = "strict"
[tool.pytest.ini_options]
testpaths = ["tests"]