• Remove complex setup.py build checks • Add runtime frontend validation • Update install docs with uv/bun steps • Simplify setup.py to minimal form • Check webui before server starts
7 lines
134 B
Python
7 lines
134 B
Python
# Minimal setup.py for backward compatibility
|
|
# Primary configuration is now in pyproject.toml
|
|
|
|
from setuptools import setup
|
|
|
|
setup()
|