fix: Fix setup.py syntax and test imports
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-01 05:39:49 +00:00
parent fb9c2bc968
commit 9b2d33ec53

View File

@@ -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",