diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..01b4a75 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,33 @@ +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" + +[project] +name = "curl-to-code-converter" +version = "1.0.0" +description = "A CLI tool that converts cURL commands into code snippets in various programming languages" +readme = "README.md" +license = {text = "MIT"} +requires-python = ">=3.7" +classifiers = [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", +] +keywords = ["curl", "converter", "cli", "code-generation", "http"] + +[project.scripts] +curl-to-code = "curl_to_code_converter.__main__:main" + +[project.urls] +Homepage = "https://7000pct.gitea.bloupla.net/7000pctAUTO/curl-to-code-converter" + +[tool.setuptools.packages.find] +where = ["."] +include = ["curl_to_code_converter*"]