https://github.com/pymc-devs/pymc3
Revision 1f806293c339132b796c008a43e4e3f437ac23de authored by Thomas Wiecki on 11 March 2023, 13:40:42 UTC, committed by GitHub on 11 March 2023, 13:40:42 UTC
This reverts commit b6521f2d6725d4c8d2ed682c7017baae5ebf55a2.
1 parent b6521f2
Raw File
Tip revision: 1f806293c339132b796c008a43e4e3f437ac23de authored by Thomas Wiecki on 11 March 2023, 13:40:42 UTC
Revert "Add Mistplay sponsor (#6570)"
Tip revision: 1f80629
setupegg.py
#   Copyright 2023 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.
"""


with open("setup.py") as s:
    exec(s.read())
back to top