https://github.com/pymc-devs/pymc3
Raw File
Tip revision: 081e7f4a55ce45ef50a03f8062611051d9c00ce8 authored by Thomas Wiecki on 20 December 2018, 18:01:59 UTC
Add date to release notes and note on dropping python 2 support.
Tip revision: 081e7f4
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