fix: replace Rust CI with Python CI workflow
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-01 05:50:25 +00:00
parent f0b3fdfe2b
commit c3dfc2d09c

View File

@@ -1,11 +1,8 @@
"""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",
@@ -15,7 +12,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=packages, packages=find_packages(),
classifiers=[ classifiers=[
"Development Status :: 4 - Beta", "Development Status :: 4 - Beta",
"Intended Audience :: Developers", "Intended Audience :: Developers",