make it a proper package

both jupyterhub and configurable-http-proxy
This commit is contained in:
MinRK
2014-08-20 16:41:02 -07:00
parent ef93fed9a4
commit 8ca425fd8a
22 changed files with 290 additions and 11 deletions

7
setupegg.py Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
# Import setuptools and call the actual setup
import setuptools
with open('setup.py', 'rb') as f:
exec(compile(f.read(), 'setup.py', 'exec'))