-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
25 lines (21 loc) · 1017 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
from setuptools import setup, find_packages
long_description = """depynd is a Python library for evaluating dependencies among random variables from data.
It supports learning statistical dependencies for one-to-one, one-to-many, and many-to-many relationships,
where each one corresponds to
- mutual information (MI) estimation,
- feature selection, and
- graphical model structure learning,
respectively. Specifically, depynd supports MI estimation for discrete-continuous mixtures, MI-based feature
selection, and structure learning of undirected graphical models (a.k.a. Markov random fields)."""
setup(
name='depynd',
version='0.6.4',
description='Evaluating dependencies among random variables.',
long_description=long_description,
author='Yuya Takashina',
author_email='takashina2051@gmail.com',
packages=find_packages(),
install_requires=['numpy>=1.13.0', 'scipy', 'scikit-learn'],
test_requires=['pytest', 'flake8'],
url='https://github.com/y-takashina/depynd',
)