fix: resolve CI/CD issues - all tests pass locally
This commit is contained in:
60
setup.py
60
setup.py
@@ -1,46 +1,34 @@
|
||||
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",
|
||||
name="mcp-server-cli",
|
||||
version="0.1.0",
|
||||
description="A CLI tool that creates a local Model Context Protocol (MCP) server",
|
||||
author="MCP Contributors",
|
||||
packages=find_packages(where="src"),
|
||||
package_dir={"": "src"},
|
||||
python_requires=">=3.9",
|
||||
install_requires=[
|
||||
"click>=8.0",
|
||||
"jinja2>=3.0",
|
||||
"pyyaml>=6.0",
|
||||
"click-completion>=0.2",
|
||||
"fastapi>=0.104.0",
|
||||
"click>=8.1.0",
|
||||
"pydantic>=2.5.0",
|
||||
"pyyaml>=6.0.0",
|
||||
"aiofiles>=23.2.0",
|
||||
"httpx>=0.25.0",
|
||||
"gitpython>=3.1.0",
|
||||
"uvicorn>=0.24.0",
|
||||
"sse-starlette>=1.6.0",
|
||||
],
|
||||
extras_require={
|
||||
"dev": [
|
||||
"pytest>=7.0",
|
||||
"pytest-cov>=4.0",
|
||||
"ruff>=0.1.0",
|
||||
],
|
||||
},
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"psc=project_scaffold_cli.cli:main",
|
||||
"mcp-server=mcp_server_cli.main:main",
|
||||
],
|
||||
},
|
||||
extras_require={
|
||||
"dev": [
|
||||
"pytest>=7.4.0",
|
||||
"pytest-asyncio>=0.21.0",
|
||||
"pytest-cov>=4.1.0",
|
||||
],
|
||||
},
|
||||
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",
|
||||
],
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user