-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
2,821 additions
and
1,423 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,44 +3,46 @@ name = "munro" | |
version = "2.0.0" | ||
description = "League Results. Sorted." | ||
keywords = ['sports', 'leagues', 'scoring', 'results', 'orienteering'] | ||
authors = [{ name = "Ben Brown", email = "[email protected]" }] | ||
authors = [ | ||
{ name = "Ben Brown", email = "[email protected]" }, | ||
] | ||
homepage = 'https://munroleagues.com' | ||
repository = 'https://github.com/brownben/munro' | ||
readme = 'README.md' | ||
license = "MIT" | ||
|
||
dependencies = [ | ||
# fastapi | ||
"fastapi~=0.112.0", | ||
"uvicorn[standard]~=0.30.5", | ||
"fastapi~=0.115.4", | ||
"uvicorn[standard]~=0.32.0", | ||
"uvloop~=0.19.0; platform_system != 'Windows'", | ||
|
||
# database | ||
"piccolo==0.119.0", | ||
"asyncpg~=0.29.0", | ||
"asyncpg~=0.30.0", | ||
|
||
# results file parsing | ||
"beautifulsoup4~=4.12.3", | ||
"lxml~=5.2.2", | ||
"lxml~=5.3.0", | ||
"defusedxml~=0.7.1", | ||
|
||
# check firebase auth tokens | ||
"google-auth~=2.33.0", | ||
"google-auth~=2.35.0", | ||
"requests~=2.32.3", | ||
|
||
"httpx~=0.27.0", # make requests for results files | ||
"icalendar~=5.0.13" # generate ical files | ||
"httpx~=0.27.2", # make requests for results files | ||
"icalendar~=6.0.1", # generate ical files | ||
] | ||
optional-dependencies.dev = [ | ||
"aiosqlite~=0.20.0", | ||
"coverage~=7.6.1", | ||
"mypy~=1.11.1", | ||
"coverage~=7.6.4", | ||
"mypy~=1.13.0", | ||
"respx~=0.21.1", | ||
"ruff~=0.5.6", | ||
"time-machine~=2.15.0", | ||
"ruff~=0.7.1", | ||
"time-machine~=2.16.0", | ||
"types-beautifulsoup4~=4.12.0", | ||
"types-icalendar~=5.0.0", | ||
"types-requests~=2.31.0" | ||
"types-icalendar~=6.0.1", | ||
"types-requests~=2.32.0", | ||
] | ||
|
||
[build-system] | ||
|
@@ -66,7 +68,7 @@ ignore = [ | |
"E501", # Line too long | ||
"B904", # Raise inside except | ||
] | ||
per-file-ignores = { "./src/database/*"=["E712"] } | ||
per-file-ignores = { "./src/database/*" = ["E712"] } | ||
|
||
select = [ | ||
"F", # Pyflakes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
python-3.11 | ||
python-3.12 |
Oops, something went wrong.