forked from petermlm/ProbPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·45 lines (35 loc) · 1.89 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python3
from setuptools import setup
import sys
sys.path.append("ProbPy")
import ProbPy
setup(name="ProbPy",
version="1.1",
description="Multi Variable Probability Calculus Library",
long_description="""
ProbPy is a Python library that aims to simplify calculations with discrete multi variable probabilistic distributions by offering an abstraction over how data is stored and how the operations between distributions are performed.
The library can be used in the implementation of many algorithms such as Bayes Theorem, Bayesian Inference algorithms like Variable Elimination, Gibbs Ask (MCMC), HMMs implementations, Information Theory, etc.
Currently, there are implementation for Bayesian and Markov Networks with some inference algorithms implemented.
For more information check the GitHub page at: https://github.com/petermlm/ProbPy.
""",
author="Pedro Melgueira",
author_email="[email protected]",
url="https://github.com/petermlm/ProbPy",
packages=["ProbPy"],
keywords='probability calculus random variable bayes bayesian network \
information theory markov',
license="MIT License",
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries'
]
)