Skip to content

Commit

Permalink
setup
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloRuizCuevas committed Jul 25, 2023
1 parent f8ffa40 commit d0fd504
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 25 deletions.
19 changes: 19 additions & 0 deletions setup.cfg
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*
26 changes: 1 addition & 25 deletions setup.py
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()

0 comments on commit d0fd504

Please sign in to comment.