29 lines
898 B
Python
29 lines
898 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="gitignore-generator",
|
|
version="0.1.0",
|
|
packages=find_packages(),
|
|
install_requires=["click>=8.0", "pyyaml>=6.0"],
|
|
extras_require={"dev": ["pytest>=7.0", "pytest-cov>=4.0"]},
|
|
entry_points={
|
|
"console_scripts": [
|
|
"gitignore-generator=src.cli:main",
|
|
],
|
|
},
|
|
python_requires=">=3.8",
|
|
author="Developer",
|
|
author_email="dev@example.com",
|
|
description="A CLI tool that automatically generates .gitignore files",
|
|
license="MIT",
|
|
keywords=["git", "gitignore", "cli", "development"],
|
|
classifiers=[
|
|
"Development Status :: 4 - Beta",
|
|
"Environment :: Console",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
],
|
|
)
|