setup.py•1.43 kB
"""Setup configuration for substrate package."""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="substrate",
version="1.0.0",
author="System Architect",
description="Foundation for MCP servers - the system architect",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yourusername/substrate",
package_dir={"": "src"},
packages=find_packages(where="src"),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.8",
install_requires=[
"fastmcp>=0.1.0",
"PyYAML>=6.0",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
],
},
entry_points={
"console_scripts": [
"substrate=substrate.__main__:main",
],
},
)