-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
23 lines (23 loc) · 1.13 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
from setuptools import setup, find_packages
setup(
name = 'entropy_estimators',
version = '0.0.2',
description = 'Estimators for entropy and other information theoretic quantities of continuous distributions',
author = 'Paul Brodersen',
author_email = '[email protected]',
url = 'https://github.com/paulbrodersen/entropy_estimators',
download_url = 'https://github.com/paulbrodersen/entropy_estimators/archive/0.0.2.tar.gz',
keywords = ['entropy', 'Shannon information', 'mutual information', 'transfer entropy'],
classifiers = [ # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
],
platforms=['Platform Independent'],
packages=find_packages(),
install_requires=['scipy', 'numpy'],
)