Skip to content
Prev Previous commit
Next Next commit
Changes the email field to one single string, and small style changes.
  • Loading branch information
fmfn authored and Guillaume Lemaitre committed Jun 24, 2015
commit e13f57143d7cf116a5f174e89ae5b44f61724b3d
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,21 @@

install_requires = [
'numpy',
'scipy',
'scikit-learn',
]

setup(name='UnbalancedDataset',
version='0.1',
description='Python module with numerous re-sampling strategies to deal with classification'
'of data-sets with strong between class imbalance.',
description='Python module with numerous re-sampling strategies to deal '
'with classification of data-sets with strong between class '
'imbalance.',
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
],
author='Fernando Nogueira & Guillaume Lemaitre',
author_email=['fmfnogueira@gmail.com', 'guillaume.lemaitre@udg.edu'],
author='Fernando Nogueira, Guillaume Lemaitre',
author_email='fmfnogueira@gmail.com, guillaume.lemaitre@udg.edu',
url='https://github.com/fmfn/UnbalancedDataset',
packages=find_packages(),
include_package_data=True,
Expand Down