-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (54 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
58 lines (54 loc) · 1.56 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
[project]
name = "mechbay"
version = "1.0.1"
description = "BattleTech miniature inventory manager - Track, organize, and build forces with your physical miniature collection"
readme = "README.md"
requires-python = ">=3.13"
license = { text = "MIT" }
authors = [{ name = "Evan A. Young", email = "cantis@gmail.com" }]
keywords = [
"battletech",
"alpha-strike",
"miniatures",
"inventory",
"tabletop-gaming",
"force-builder",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Games/Entertainment :: Board Games",
]
dependencies = [
"flask>=3.1.2",
"python-dotenv>=1.2.1",
"sqlalchemy>=2.0.44",
"waitress>=3.0.0",
"gunicorn>=23.0.0",
]
[dependency-groups]
dev = [
"pytest>=9.0.0",
"ruff>=0.14.4",
"pyinstaller>=6.0.0",
"pytest-cov>=7.0.0",
"pytest-xdist>=3.8.0",
]
[tool.pytest.ini_options]
# Test discovery and execution settings
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = [
"-v", # Verbose output
"--strict-markers", # Error on unknown markers
]
# Custom markers for test categorization
markers = [
"slow: marks tests as slow (integration tests with realistic data structures)",
]
# Note: For parallel execution, run with: pytest -n auto
# This uses all CPU cores. Override with pytest -n 0 for sequential debugging.
# CI pipelines should use: pytest -n auto for faster execution.