7 lines
140 B
Python
Executable file
7 lines
140 B
Python
Executable file
#!/usr/bin/env python3
|
|
"""setup.py - setuptools compatibility shim"""
|
|
|
|
import setuptools
|
|
|
|
if __name__ == "__main__":
|
|
setuptools.setup()
|