47 lines
1.4 KiB
Python
47 lines
1.4 KiB
Python
from setuptools import find_packages, setup
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name="project-scaffold-cli",
|
|
version="1.0.0",
|
|
author="Project Scaffold CLI",
|
|
author_email="dev@example.com",
|
|
description="A CLI tool that generates standardized project scaffolding for multiple languages",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/example/project-scaffold-cli",
|
|
packages=find_packages(),
|
|
python_requires=">=3.8",
|
|
install_requires=[
|
|
"click>=8.0",
|
|
"jinja2>=3.0",
|
|
"pyyaml>=6.0",
|
|
"click-completion>=0.2",
|
|
],
|
|
extras_require={
|
|
"dev": [
|
|
"pytest>=7.0",
|
|
"pytest-cov>=4.0",
|
|
"ruff>=0.1.0",
|
|
],
|
|
},
|
|
entry_points={
|
|
"console_scripts": [
|
|
"psc=project_scaffold_cli.cli:main",
|
|
],
|
|
},
|
|
classifiers=[
|
|
"Development Status :: 4 - Beta",
|
|
"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",
|
|
],
|
|
)
|