40 lines
1.1 KiB
TOML
40 lines
1.1 KiB
TOML
[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://github.com/example/curl-to-code-converter"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.0.0",
|
|
"ruff>=0.1.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["*"]
|
|
include = ["curl_to_code_converter*"]
|