This commit is contained in:
5
setup.py
5
setup.py
@@ -1,8 +1,11 @@
|
|||||||
|
"""Setup configuration for json-to-openapi package."""
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
with open("README.md", "r", encoding="utf-8") as fh:
|
with open("README.md", "r", encoding="utf-8") as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
|
packages = find_packages()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="json-to-openapi",
|
name="json-to-openapi",
|
||||||
version="1.0.0",
|
version="1.0.0",
|
||||||
@@ -12,7 +15,7 @@ setup(
|
|||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
url="https://github.com/example/json-to-openapi",
|
url="https://github.com/example/json-to-openapi",
|
||||||
packages=find_packages(),
|
packages=packages,
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Development Status :: 4 - Beta",
|
"Development Status :: 4 - Beta",
|
||||||
"Intended Audience :: Developers",
|
"Intended Audience :: Developers",
|
||||||
|
|||||||
Reference in New Issue
Block a user