forked from DeanWay/fastapi-versioning
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
f8ffa40
commit d0fd504
Showing
2 changed files
with
20 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[metadata] | ||
description = This package provides the input and output schemas used by the CoreAPI in its endpoints | ||
name = fast-api-versioning | ||
version = 1.0.0 | ||
author = Imogate | ||
license = MIT | ||
license_files = LICENSE | ||
classifiers = | ||
License :: OSI Approved :: MIT License | ||
Programming Language :: Python :: 3 | ||
|
||
[options] | ||
package_dir = | ||
= src | ||
packages = find: | ||
|
||
[options.packages.find] | ||
where=src | ||
exclude = tests* |
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,27 +1,3 @@ | ||
from setuptools import setup | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name="fastapi_versioning", | ||
version="0.10.0", | ||
author="Dean Way", | ||
description="api versioning for fastapi web applications", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/DeanWay/fastapi-versioning", | ||
packages=["fastapi_versioning"], | ||
classifiers=[ | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
install_requires=[ | ||
"fastapi>=0.56.0", | ||
"starlette", | ||
], | ||
python_requires=">=3.6", | ||
) | ||
setup() |