forked from ericsuh/dirichlet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (38 loc) · 1.31 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
#!/usr/bin/env python
#
# This file is subject to the terms and conditions defined in file
# 'LICENSE.txt', which is part of this source code package.
from setuptools import setup, find_packages
setup(
name='dirichlet',
version='0.7',
description='Calculates Dirichlet test and plots 2-simplex Dirichlets',
author='Eric Suh',
author_email='[email protected]',
packages=['dirichlet'],
install_requires = [
'scipy >= 0.10.1',
'numpy >= 1.6.2',
'matplotlib >= 1.2.0',
],
url='http://github.com/ericsuh/dirichlet',
download_url='https://github.com/ericsuh/dirichlet/zipball/master',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
],
long_description="""\
Dirichlet Test
--------------
Calculates nested model Dirichlet test of independence by finding maximum
likelihood estimates of Dirichlet distributions for different data sets
and comparing to the null hypothesis of the data being derived from one
distribution.
In addition, ``dirichlet.simplex`` module creates scatter, contour, and filled
contour 2-simplex plots.
"""
)