10 lines
192 B
Python
10 lines
192 B
Python
#!/usr/bin/env python
|
|
"""
|
|
Basic setup.py to maintain backwards compatability with non-PEP517/PEP518
|
|
compliant projects
|
|
"""
|
|
import setuptools
|
|
|
|
if __name__ == "__main__":
|
|
setuptools.setup()
|