-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (79 loc) · 2.09 KB
/
pyproject.toml
File metadata and controls
88 lines (79 loc) · 2.09 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
[project]
name = "powerschool-portal"
version = "0.1.0"
description = "PowerSchool Parent Portal Enhancement - Scrape, store, and analyze student data"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "MIT"}
authors = [
{name = "SchoolConnect Team"}
]
keywords = ["powerschool", "education", "scraper", "mcp", "parent-portal", "grades"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Education",
"Private :: Do Not Upload",
]
dependencies = [
"playwright>=1.40.0",
"mcp>=1.0.0",
"click>=8.1.0",
"pydantic>=2.0.0",
"beautifulsoup4>=4.12.0",
"lxml>=5.0.0",
"python-dotenv>=1.0.0",
"rich>=13.0.0",
"requests>=2.32.5",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-html>=4.0.0",
"pytest-cov>=4.1.0",
"ruff>=0.1.0",
"mypy>=1.8.0",
"requests>=2.31.0",
"streamlit>=1.28.0",
"anthropic>=0.20.0",
"pyyaml>=6.0.0",
"tenacity>=8.2.0,<9.0.0",
]
[project.scripts]
powerschool = "src.cli.main:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"unit: Unit tests (no external dependencies)",
"integration: Integration tests (database, parsers)",
"e2e: End-to-end tests (requires PowerSchool access)",
"ui: UI tests (requires browser)",
"streamlit: Streamlit-specific UI tests",
"slow: Slow running tests",
]
filterwarnings = [
"ignore::DeprecationWarning",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"scripts/*.py" = ["E402"] # Allow imports after sys.path modification
[tool.mypy]
python_version = "3.12"
ignore_missing_imports = true
warn_return_any = true
warn_unused_configs = true