mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-08 02:24:08 +00:00

apologies to anyone finding this commit via git blame or log run the autoformatting by pre-commit run --all-files
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'))
|