-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
28 lines (28 loc) · 961 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
24
25
26
27
28
from distutils.core import setup
with open("README.md", 'r') as f:
long_description = f.read()
with open("conjugate_prior/__init__.py", 'r') as f:
for l in f:
if l.startswith("__version__"):
_,version=l.split("=", 1)
version = version.strip('\'" \r\n\t')
setup(
name="conjugate_prior",
packages=["conjugate_prior"],
install_requires=[
'setuptools',
'scipy',
'numpy',
'matplotlib',
],
long_description=long_description,
long_description_content_type="text/markdown",
version=version,
description='Bayesian Statistics conjugate prior distributions',
author='Uri Goren',
author_email='[email protected]',
url='https://github.com/argmaxml/conjugate_prior',
keywords=['conjugate', 'bayesian', 'stats', 'statistics', 'bayes', 'distribution', 'probability', 'hypothesis',
'modelling', 'thompson sampling'],
classifiers=[],
)