From c69776a6f0b1b08760b53c0ac8ca82a9315c367b Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 11:01:14 +0000 Subject: [PATCH] Initial upload: Project Scaffold CLI with multi-language templates and CI/CD --- setup.py | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..b9bc092 --- /dev/null +++ b/setup.py @@ -0,0 +1,47 @@ +from setuptools import setup, find_packages + +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://7000pct.gitea.bloupla.net/7000pctAUTO/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", + "black>=23.0", + "flake8>=6.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", + ], +)