forked from nickkunz/smogn
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
44 lines (38 loc) · 1.51 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup
setup(
name = 'ImbalancedLearningRegression',
version = '0.0.2',
description = 'Python implementations of preprocesssing imbalanced data for regression',
long_description = open('README.md').read(),
long_description_content_type = "text/markdown",
author = 'Paula Branco, Wenglei Wu, Alex Chengen Lyu, Lingyi Kong, Gloria Hu',
author_email = '[email protected], [email protected], [email protected], [email protected], [email protected]',
url = 'https://github.com/paobranco/ImbalancedLearningRegression',
classifiers = [
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
],
keywords = [
'smote',
'Gaussian noise',
'condensed nearest neighbour',
'edited nearest neighbour',
'Tomek links',
'ADASYN',
'over-sampling',
'under-sampling',
'synthetic data',
'imbalanced data',
'pre-processing',
'regression'
],
packages = ['ImbalancedLearningRegression'],
include_package_data = True,
install_requires = ['numpy', 'pandas', 'tqdm', 'scikit-learn'],
)