forked from CyberPoint/libpgm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 906 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (20 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# run python setup.py install to install
# run python setup.py sdist to generate a tarball
from distutils.core import setup
setup(
name = 'libpgm',
version = '1.3',
author = 'CyberPoint International, LLC',
author_email = 'mraugas@cyberpointllc.com',
url = 'http://www.cyberpointllc.com',
description = 'A library for creating and using probabilistic graphical models',
long_description = 'This library provides tools for modeling large systems with Bayesian networks. Using these tools allows for efficient statistical analysis on large data sets.',
packages = ['libpgm', 'libpgm.CPDtypes', 'utils'],
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering :: Mathematics'
]
)