[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "uncomment"
version = "2.2.0"
description = "A fast Rust-based CLI tool for removing comments from source code"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Na'aman Hirschfeld", email = "nhirschfeld@gmail.com"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Code Generators",
"Topic :: Text Processing",
"Environment :: Console"
]
keywords = ["comments", "cli", "rust", "remove-comments", "code-cleanup", "ai-generated-code", "formatting", "uncomment"]
requires-python = ">=3.8"
dependencies = [
"requests>=2.20.0"
]
[project.urls]
Homepage = "https://github.com/Goldziher/uncomment"
Repository = "https://github.com/Goldziher/uncomment.git"
Issues = "https://github.com/Goldziher/uncomment/issues"
[project.scripts]
uncomment = "uncomment.cli:main"
[tool.setuptools]
packages = ["uncomment"]