diff --git a/pyproject.toml b/pyproject.toml index 629930c..b631d45 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta" [project] name = "gitignore-generator" -version = "0.1.0" -description = "A CLI tool that automatically generates .gitignore files based on project type, tech stack, and IDE" +version = "1.0.0" +description = "A CLI tool that generates optimized .gitignore files with support for 50+ frameworks" readme = "README.md" -license = {text = "MIT"} requires-python = ">=3.8" +license = {text = "MIT"} authors = [ - {name = "Developer", email = "dev@example.com"} + {name = "Gitignore Generator Contributors"} ] -keywords = ["git", "gitignore", "cli", "development", "utilities"] +keywords = ["git", "gitignore", "cli", "generator"] classifiers = [ "Development Status :: 4 - Beta", "Environment :: Console", @@ -37,7 +37,7 @@ dev = [ ] [project.scripts] -gitignore-generator = "src.cli:main" +gitignore = "gitignore_generator.cli:main" [tool.setuptools.packages.find] where = ["."] @@ -45,13 +45,3 @@ where = ["."] [tool.pytest.ini_options] testpaths = ["tests"] python_files = ["test_*.py"] -python_classes = ["Test*"] -python_functions = ["test_*"] -addopts = "-v --tb=short" - -[tool.coverage.run] -source = ["src"] -omit = ["tests/*", "**/__init__.py"] - -[tool.coverage.report] -exclude_lines = ["pragma: no cover", "def __repr__", "raise AssertionError", "raise NotImplementedError"]