Files
2026-07-13 12:40:22 +08:00

12 lines
283 B
Python

"""
Setup.py for SuperClaude Framework
This is a minimal setup.py that defers to pyproject.toml for configuration.
Modern Python packaging uses pyproject.toml as the primary configuration file.
"""
from setuptools import setup
# All configuration is now in pyproject.toml
setup()