-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
23 lines (23 loc) · 1 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_based_binning',
version = '0.0.1',
description = 'Entropy based binning of discrete variables.',
author = 'Paul Brodersen',
author_email = '[email protected]',
url = 'https://github.com/paulbrodersen/entropy_based_binning',
download_url = 'https://github.com/paulbrodersen/entropy_based_binning/archive/0.0.1.tar.gz',
keywords = ['entropy', 'binning', 'partition problem'],
classifiers = [ # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Mathematics'
],
platforms=['Platform Independent'],
packages=find_packages(),
install_requires=['numpy'],
)