https://github.com/pymc-devs/pymc3
Raw File
Tip revision: 63eba59fe2c42c936136b24babf6ca1e3a777d74 authored by Chris Fonnesbeck on 10 August 2020, 10:48:54 UTC
Fixed error message referencing non-existent file (#4039)
Tip revision: 63eba59
setupegg.py
#   Copyright 2020 The PyMC Developers
#
#   Licensed under the Apache License, Version 2.0 (the "License");
#   you may not use this file except in compliance with the License.
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.

#!/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