diff --git a/cli/py/pyproject.toml b/cli/py/pyproject.toml index b8910d5..5e04efc 100644 --- a/cli/py/pyproject.toml +++ b/cli/py/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "trustspeccli" -version = "{VERSION}" +version = "0.1.22" authors = ["Wojciech Karwacki "] homepage = "https://github.com/wkarwacki/python-openapi-generator-rust" repository = "https://github.com/wkarwacki/python-openapi-generator-rust" @@ -31,8 +31,8 @@ classifiers = [ ] [tool.poetry.dependencies] -python = "^3.10" -trustspecpy = "{VERSION}" +python = "^3.6" +trustspecpy = "0.1.22" [tool.poetry.scripts] trust = "trustspeccli.main:run" diff --git a/cli/py/pyproject.toml.bu b/cli/py/pyproject.toml.bu new file mode 100644 index 0000000..58a4d13 --- /dev/null +++ b/cli/py/pyproject.toml.bu @@ -0,0 +1,42 @@ +[tool.poetry] +name = "trustspeccli" +version = "{VERSION}" +authors = ["Wojciech Karwacki "] +homepage = "https://github.com/wkarwacki/python-openapi-generator-rust" +repository = "https://github.com/wkarwacki/python-openapi-generator-rust" +documentation = "https://github.com/wkarwacki/python-openapi-generator-rust" +packages = [{include = "trustspeccli", from="src"}] +readme = "README.md" +description = "Web Integration Specification, easy and lightweight alternative to OpenAPI" +classifiers = [ + "Development Status :: 2 - Pre-Alpha", + "Environment :: Console", + "Environment :: Web Environment", + "Intended Audience :: Developers", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3", + "Programming Language :: Python", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Rust", + "Topic :: Internet", + "Topic :: Internet :: WWW/HTTP :: HTTP Servers", + "Topic :: Internet :: WWW/HTTP", + "Topic :: Software Development", + "Topic :: Software Development :: Code Generators", + "Topic :: Software Development :: Libraries :: Python Modules", + "Typing :: Typed", +] + +[tool.poetry.dependencies] +python = "^3.6" +trustspecpy = "{VERSION}" + +[tool.poetry.scripts] +trust = "trustspeccli.main:run" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"