Files
gitignore-generator/pyproject.toml
7000pctAUTO 53e7ef814f
Some checks failed
CI / test (push) Has been cancelled
Initial upload: core files and configuration
2026-02-02 15:53:09 +00:00

48 lines
1.2 KiB
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gitignore-generator"
version = "1.0.0"
description = "A CLI tool that generates optimized .gitignore files with support for 50+ frameworks"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Gitignore Generator Contributors"}
]
keywords = ["git", "gitignore", "cli", "generator"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"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"
]
dependencies = [
"click>=8.0",
"pyyaml>=6.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0"
]
[project.scripts]
gitignore = "gitignore_generator.cli:main"
[tool.setuptools.packages.find]
where = ["."]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]