forked from lmc2179/bayesian_bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (26 loc) · 1.35 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from distutils.core import setup
setup(
name = "bayesian_bootstrap",
packages = ["bayesian_bootstrap"],
version = "1.0.5",
description = "Bayesian Bootstrapping for statistics and regression models",
author = "Louis Cialdella",
author_email = "[email protected]",
url = "https://github.com/lmc2179/bayesian_bootstrap",
download_url = "https://github.com/lmc2179/bayesian_bootstrap/archive/master.zip",
keywords = ["statistics", "bayesian", "machine learning", "bootstrap", "bayes", "probability", "inference"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
],
long_description = """bayesian_bootstrap is a package for Bayesian bootstrapping in Python. For more information about this package and its usage, visit https://github.com/lmc2179/bayesian_bootstrap."""
)