-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (63 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
67 lines (63 loc) · 1.55 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "Hacktober-Fest-2025-Pixly"
version = "0.1.0"
description = "Pixly is an AI game assistant overlay that helps you answers queries about a game without needing to leave it."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"customtkinter>=5.2.2",
"fastapi>=0.117.1",
"keyboard>=0.13.5",
"requests>=2.32.5",
"uvicorn>=0.37.0",
"google-generativeai>=0.8.3",
"pillow>=10.0.0",
"dotenv>=0.9.9",
"psutil>=5.9.0",
"pywin32>=306",
"cryptography>=41.0.0",
"chromadb>=0.4.0",
"sentence-transformers>=2.2.2",
"beautifulsoup4>=4.12.0",
"pandas>=2.0.0",
"lxml>=4.9.0",
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
]
[project.optional-dependencies]
test = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-mock>=3.11.0",
"pytest-cov>=4.1.0",
"httpx>=0.24.0",
"pytest-xdist>=3.3.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"-v",
"--tb=short",
"--strict-markers",
"--disable-warnings",
"--cov=backend",
"--cov-report=term-missing",
"--cov-report=html:htmlcov",
]
markers = [
"unit: Unit tests",
"integration: Integration tests",
"slow: Slow running tests",
"api: API endpoint tests",
]
asyncio_mode = "auto"
[tool.setuptools.packages.find]
where = ["."]
include = ["backend*"]
exclude = ["tests*", "vector_db*", "games_info*"]