https://github.com/pymc-devs/pymc3
Raw File
Tip revision: a49124117eb037653655cdd022eafcc8ba655d1c authored by Thomas Wiecki on 05 May 2013, 00:50:42 UTC
Merge pull request #228 from pymc-devs/jsalvatier
Tip revision: a491241
setupegg.py
#!/usr/bin/env python
"""
A setup.py script to use setuptools, which gives egg goodness, etc.
"""

from setuptools import setup
execfile('setup.py')
back to top