https://github.com/mackelab/delfi/
Raw File
Tip revision: 62a99a879145bdc675917fc33eed69293b964048 authored by jan-matthis on 02 July 2020, 14:59:00 UTC
Update README.md
Tip revision: 62a99a8
setup.py
from setuptools import setup

exec(open("delfi/version.py").read())

setup(
    name="delfi",
    version=__version__,
    description="Density estimation likelihood-free inference",
    url="https://github.com/mackelab/delfi",
    author="Mackelab",
    packages=[
        "delfi",
        "delfi.distribution",
        "delfi.distribution.mixture",
        "delfi.generator",
        "delfi.inference",
        "delfi.neuralnet",
        "delfi.neuralnet.layers",
        "delfi.neuralnet.loss",
        "delfi.simulator",
        "delfi.summarystats",
        "delfi.utils",
    ],
    license="BSD",
    install_requires=[
        "dill",
        "lasagne@git+https://github.com/Lasagne/Lasagne#egg=lasagne",
        "numpy",
        "scipy",
        "theano",
        "tqdm",
        "snl@git+https://github.com/mackelab/snl#egg=snl",
    ],
)
back to top