forked from scikit-learn-contrib/imbalanced-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 816 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
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.',
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
],
author='Fernando Nogueira, Guillaume Lemaitre',
author_email='[email protected], [email protected]',
url='https://github.com/fmfn/UnbalancedDataset',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
)