-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
67 lines (63 loc) · 2.21 KB
/
Copy pathsetup.py
File metadata and controls
67 lines (63 loc) · 2.21 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import setuptools
long_description = """
This package allows both automated and customized treatment of missing
values in datasets using Python. The treatments that are implemented in this
package are:
* Listwise deletion
* Pairwise deletion
* Dropping variables
* Random sample imputation
* Random hot-deck imputation
* LOCF
* NOCB
* Most frequent substitution
* Mean and median substitution
* Constant value imputation
* Random value imputation
* Interpolation
* Interpolation with seasonal adjustment
* Linear regression imputation
* Stochastic regression imputation
* Logistic regression imputation
* K-nearest neighbors imputation
* Sequential regression multiple imputation
* Multiple imputation by chained equations
All these treatments can be applied to whole datasets or parts of them and
allow for extensive customization. The package can also recommend a
treatment for a given dataset, inform about the treatments that are
applicable to it, and automatically apply the best treatment.
"""
setuptools.setup(
name='imputena',
version='1.0',
description='Package that allows both automated and customized treatment '
'of missing values in datasets using Python.',
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(exclude=('test',)),
url='http://github.com/macarro/imputena',
author='Miguel Macarro',
author_email='migmackle@alum.us.es',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Mathematics',
'Intended Audience :: Science/Research',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Financial and Insurance Industry'
],
python_requires='>=3.5',
install_requires=[
'pandas',
'numpy',
'statsmodels',
'sklearn'
],
)