https://github.com/pymc-devs/pymc3
Raw File
Tip revision: 581b704aa358223eb6b53bb4f37ea4329cc509b2 authored by Chris Fonnesbeck on 01 January 2017, 20:09:27 UTC
Merge pull request #1630 from pymc-devs/rc5
Tip revision: 581b704
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