7 lines
165 B
Python
7 lines
165 B
Python
# https://github.com/pypa/setuptools/issues/2816
|
|
# allow editable install on older pip versions
|
|
from setuptools import setup
|
|
|
|
if __name__ == "__main__":
|
|
setup()
|