https://github.com/pymc-devs/pymc3
Raw File
Tip revision: 58993817f929366047d9a6db53b731a87bca3ba9 authored by Christopher Fonnesbeck on 09 April 2018, 14:00:01 UTC
Merge branch 'v3.4_release'
Tip revision: 5899381
setupegg.py
#!/usr/bin/env python
"""
A setup.py script to use setuptools, which gives egg goodness, etc.
"""

from setuptools import setup
with open('setup.py') as s:
    exec(s.read())
back to top