SuperClaude/setup.py

11 lines
282 B
Python
Raw Normal View History

"""
Setup.py for SuperClaude Framework
2025-08-14 08:56:04 +05:30
This is a minimal setup.py that defers to pyproject.toml for configuration.
Modern Python packaging uses pyproject.toml as the primary configuration file.
"""
2025-08-14 08:56:04 +05:30
from setuptools import setup
2025-08-14 08:56:04 +05:30
# All configuration is now in pyproject.toml
setup()