File size: 177 Bytes
5e296ef | 1 2 3 4 5 6 7 8 | #!/usr/bin/env python
"""Minimal setup.py for backward compatibility with legacy pip install workflows."""
from setuptools import setup
if __name__ == "__main__":
setup()
|
5e296ef | 1 2 3 4 5 6 7 8 | #!/usr/bin/env python
"""Minimal setup.py for backward compatibility with legacy pip install workflows."""
from setuptools import setup
if __name__ == "__main__":
setup()
|