https://github.com/pymc-devs/pymc3
Raw File
Tip revision: 90a3fbf266ef0aac92326ecf95fe60e992b9ad46 authored by Chris Fonnesbeck on 06 September 2016, 19:12:49 UTC
Incremented version to 3.0.rc1 (#1334)
Tip revision: 90a3fbf
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