FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
fastapi-controller/setup.py at master · aksharpatel47/fastapi-controller · GitHub
aksharpatel47
/
fastapi-controller
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
4
Code
Issues
5
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
fastapi-controller
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
29 lines (27 loc) · 822 Bytes
Breadcrumbs
fastapi-controller
/
setup.py
Copy path
File metadata and controls
29 lines (27 loc) · 822 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
from
setuptools
import
setup
with
open
(
"Readme.md"
,
"r"
,
encoding
=
"utf-8"
)
as
fh
:
long_description
=
fh
.
read
()
setup
(
name
=
"fastapi-controller"
,
version
=
"0.0.8"
,
author
=
"Akshar Patel"
,
author_email
=
"akshar.patel.47@gmail.com"
,
description
=
"Package to create API controllers that can inherit routes"
,
long_description
=
long_description
,
long_description_content_type
=
"text/markdown"
,
url
=
"https://github.com/aksharpatel47/fastapi-controller"
,
packages
=
[
"fastapi_controller"
],
install_requires
=
[
"fastapi-utils>=0.2.1"
,
"fastapi[all]>=0.65.0"
,
"typing-inspect>=0.7.1"
],
extra_require
=
{
'dev'
: [
"pytest>=6.2.4"
,
"pytest-asyncio>=0.15.1"
,
"httpx>=0.18.1"
]
},
python_requires
=
">=3.6"
,
)
Back
|
FazBrowse Home
|
New Git URL