mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-07 18:14:10 +00:00
8 lines
217 B
Python
Executable File
8 lines
217 B
Python
Executable File
#!/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'))
|