File tree Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -32,14 +32,18 @@ classifiers = [
3232 " License :: OSI Approved :: MIT License" ,
3333]
3434dependencies = [
35- " typer >= 0.12.3 " ,
35+ " typer >= 0.15.1 " ,
3636 " uvicorn[standard] >= 0.15.0" ,
37- " rich-toolkit >= 0.11.1 "
37+ " rich-toolkit >= 0.14.8 " ,
3838]
3939
4040[project .optional-dependencies ]
4141standard = [
4242 " uvicorn[standard] >= 0.15.0" ,
43+ " fastapi-cloud-cli >= 0.1.1" ,
44+ ]
45+ standard-no-fastapi-cloud-cli = [
46+ " uvicorn[standard] >= 0.15.0" ,
4347]
4448
4549[project .urls ]
Original file line number Diff line number Diff line change 1- -e .
1+ -e .[standard]
22
33pytest >=4.4.0,<9.0.0
44coverage[toml] >=6.2,<8.0
Original file line number Diff line number Diff line change 2525 uvicorn = None # type: ignore[assignment]
2626
2727
28+ try :
29+ from fastapi_cloud_cli .cli import (
30+ app as fastapi_cloud_cli ,
31+ )
32+
33+ app .add_typer (fastapi_cloud_cli )
34+ except ImportError : # pragma: no cover
35+ pass
36+
37+
2838def version_callback (value : bool ) -> None :
2939 if value :
3040 print (f"FastAPI CLI version: [green]{ __version__ } [/green]" )
You canβt perform that action at this time.
0 commit comments