From 9ee334e68907e9fd5047c23be85bef894b3e84b9 Mon Sep 17 00:00:00 2001 From: Abhisek Maiti Date: Thu, 17 Jan 2019 14:02:36 +0530 Subject: [PATCH] Update setup.py Added description --- setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5fb7bee..27142ef 100644 --- a/setup.py +++ b/setup.py @@ -11,8 +11,13 @@ def setup_package(): name="rotation_forest", version='0.2', description='Sklearn style implementation of the Rotation Forest Algorithm', + long_description=''' + Implementation of the Algorithm: J. J. Rodriguez, L. I. Kuncheva and C. J. Alonso, "Rotation Forest: A New Classifier Ensemble Method," in IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. 28, no. 10, pp. 1619-1630, Oct. 2006. +doi: 10.1109/TPAMI.2006.211''', author='Joshua D. Loyal, Abhisek Maiti', - author_email='mail2abhisek.maiti@gmail.com' + author_email='mail2abhisek.maiti@gmail.com', + maintainer='Abhisek Maiti', + maintainer_email='mail2abhisek.maiti@gmail.com', url='https://github.com/digital-idiot/RotationForest', license='MIT', install_requires=['numpy', 'scipy', 'scikit-learn'],