-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 2.12 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (58 loc) · 2.12 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>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "lastbell"
version = "0.3.3"
description = "Self-hosted ParentVUE + Canvas grade & assignment monitor — alerts for any number of watchers, and the students too."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Last Bell contributors" }]
keywords = ["parentvue", "edupoint", "synergy", "grades", "school", "self-hosted"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Education",
"Topic :: Home Automation",
]
dependencies = [
"requests>=2.31",
"python-dotenv>=1.0",
"keyring>=24.0",
]
[project.urls]
Homepage = "https://github.com/noestudios/lastbell"
Repository = "https://github.com/noestudios/lastbell"
Issues = "https://github.com/noestudios/lastbell/issues"
[project.optional-dependencies]
service = ["APScheduler>=3.10"]
dev = ["pytest>=7.4", "ruff>=0.5"]
[project.scripts]
lastbell = "lastbell.cli:main"
# The preflight doubles as a standalone district-compatibility tool:
# pipx run --spec lastbell parentvue-preflight -d some-host.edupoint.com
parentvue-preflight = "lastbell.preflight:main"
[tool.setuptools.packages.find]
include = ["lastbell*"]
[tool.setuptools.package-data]
lastbell = ["schema.sql", "style.css", "app.js", "mcps_schools.json", "favicon.png"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py39" # the advertised floor — keep the linter honest about it
line-length = 100
extend-exclude = [".claude"]
[tool.ruff.lint]
select = ["E", "F", "W", "B", "UP"]
ignore = ["E501"] # long lines are the HTML/SQL strings' business