https://github.com/pymc-devs/pymc3
Raw File
Tip revision: cad8ec20169fa0d457d98b0f89100588be79b4c5 authored by Peadar Coyle on 02 January 2017, 00:28:08 UTC
Merging (#1635)
Tip revision: cad8ec2
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