Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Cython / setupegg.py
Size: Mime:
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
import setuptools
with open('setup.py') as f:
    exec(compile(f.read(), 'setup.py', 'exec'))