Files
gitignore-generator/pyproject.toml
7000pctAUTO 5342195fbb
Some checks failed
CI / test (3.10) (push) Has been cancelled
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled
fix: resolve CI test failures by simplifying workflow and fixing template loading
2026-02-02 16:53:00 +00:00

51 lines
1.3 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.setuptools.package-data]
gitignore_generator = ["templates/**/*.json", "templates/**/*.gitignore"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]