generated from albertyw/base-flask
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
62 lines (53 loc) · 2.04 KB
/
pyproject.toml
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
[project]
name = "chasecentercalendar"
version = "1.0.0"
dependencies = [
# Core packages
"python-dotenv==1.0.1", # Read environment variables from .env
"Flask==3.1.0", # Web microframework
"gunicorn==23.0.0", # WSGI server
"syspath==3.0.6", # Modify paths
# Features
"beautifulsoup4==4.13.3", # HTML Parser
"flask-sitemap==0.4.0", # Web sitemaps
"icalendar==6.1.1", # iCal generator
"python-dateutil==2.9.0.post0", # Datetime manipulation
"python-slugify==8.0.4", # Generate string slugs
# Monitoring/tracking/logging
"blinker==1.9.0", # Dependency of rollbar
"rollbar==1.1.2", # rollbar.com error logging
"setproctitle==1.3.4", # Allow gunicorn to set process title
"varsnap==1.5.8", # Test discovery
]
[project.optional-dependencies]
test = [
# Testing
"coverage==7.6.11", # Test coverage
"ruff==0.9.5", # Python linter
# Types
"mypy==1.15.0", # Type checking
"types-beautifulsoup4==4.12.0.20250204", # Type stubs for beautifulsoup4 package
"types-python-dateutil==2.9.0.20241206", # Type stubs for dateutil package
"types-python-slugify==8.0.2.20240310", # Type stubs for python-slugify package
"types-requests==2.32.0.20241016", # Type stubs for requests package
]
[tool.ruff]
# https://docs.astral.sh/ruff/rules/
lint.select = ["E", "F", "W", "A", "B", "COM", "N", "PLC", "PLE", "PLW"]
[tool.mypy]
strict = true
ignore_missing_imports = true
[tool.coverage.run]
source = [
".",
]
omit = [
".virtualenv",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
'if __name__ == "__main__":',
]
[tool.setuptools]
py-modules = []