Add web optional dependency and update docs
Flask is now declared under [project.optional-dependencies] as the `web` extra, so `pip install osm-geojson[web]` installs both the CLI and Flask. The `dev` extra includes Flask too so the test/dev venv gets everything. Update README and AGENTS.md accordingly. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
c37b463c0e
commit
53aab8c4bc
3 changed files with 8 additions and 4 deletions
|
|
@ -15,11 +15,15 @@ dependencies = [
|
|||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
web = [
|
||||
"flask>=3.0",
|
||||
]
|
||||
dev = [
|
||||
"mypy",
|
||||
"pytest",
|
||||
"responses",
|
||||
"types-requests",
|
||||
"flask>=3.0",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue