forked from argmaxml/conjugate_prior
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (23 loc) · 755 Bytes
/
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
from distutils.core import setup
with open("README.md", 'r') as f:
long_description = f.read()
setup(
name="conjugate_prior",
packages=["conjugate_prior"],
install_requires=[
'setuptools',
'scipy',
'numpy',
'matplotlib',
],
long_description=long_description,
long_description_content_type="text/markdown",
version="0.71",
description='Bayesian Statistics conjugate prior distributions',
author='Uri Goren',
author_email='[email protected]',
url='https://github.com/urigoren/conjugate_prior',
keywords=['conjugate', 'bayesian', 'stats', 'statistics', 'bayes', 'distribution', 'probability', 'hypothesis',
'modelling', 'thompson sampling'],
classifiers=[],
)