Add stub setup.py

This allows one to use commands such as "python3 setup.py install".
merge-requests/18/head
James Valleroy 2021-02-15 22:49:57 -05:00
parent 1adc343ebd
commit 695a49b3e8
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808
1 changed files with 6 additions and 0 deletions

6
setup.py 100644
View File

@ -0,0 +1,6 @@
#!/usr/bin/python3
import setuptools
if __name__ == "__main__":
setuptools.setup()