12 lines
283 B
Python
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()
|