From f9c9e32844ad5240d820a635c8a306a1ee280b4d Mon Sep 17 00:00:00 2001 From: pycaret <58118658+pycaret@users.noreply.github.com> Date: Thu, 23 Jan 2020 16:59:35 -0500 Subject: [PATCH] Add files via upload --- LICENSE | 4 ++-- README.md | 11 ++++++----- setup.py | 28 +++++++++++++++++++++++++++- 3 files changed, 35 insertions(+), 8 deletions(-) diff --git a/LICENSE b/LICENSE index 4e1e954..1d6ff56 100644 --- a/LICENSE +++ b/LICENSE @@ -1,8 +1,8 @@ -Copyright 2019 Moez Ali +Copyright 2019-2020, Moez Ali Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -© 2019 GitHub, Inc. \ No newline at end of file +© 2020 GitHub, Inc. \ No newline at end of file diff --git a/README.md b/README.md index 38a5ea1..e16dd6c 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@ PyCaret is end-to-end open source machine learning library for python programming language. Its primary objective is to reduce the cycle time of hypothesis to insights by providing an easy to use high level unified API. PyCaret's vision is to become defacto standard for teaching machine learning and data science. Our strength is in our easy to use unified interface for both supervised and unsupervised learning. It saves time and effort that citizen data scientists, students and researchers spent on coding or learning to code using different interfaces, so that now they can focus on business problem. ## Current Release -The current release is beta 0.0.20 (as of 20/01/2020). A full release is targetted in the first week of February 2020. +The current release is beta 0.0.21 (as of 23/01/2020). A full release is targetted in the first week of February 2020. ## Features Currently Available -As per beta 0.0.20 following modules are generally available: +As per beta 0.0.21 following modules are generally available: * pycaret.datasets
* pycaret.classification (binary and multiclass)
* pycaret.regression
@@ -13,6 +13,7 @@ As per beta 0.0.20 following modules are generally available: * pycaret.arules
* pycaret.anamoly
* pycaret.clustering
+* pycaret.preprocess
## Future Release Full public release is targetted to be released in first week of Feb 2020. @@ -30,7 +31,7 @@ pip install pycaret ``` ## Quick Start -As of beta 0.0.20 classification, regression, nlp, arules, anomaly and clustering modules are available. +As of beta 0.0.21 classification, regression, nlp, arules, anomaly and clustering modules are available. ### Classification / Regression @@ -195,11 +196,11 @@ Contributions are most welcome. To make contribution please reach out moez.ali@q ## License -Copyright 2020 PyCaret / Copyright 2020 Moez Ali +Copyright 2019-2020 Moez Ali Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -© 2019 GitHub, Inc. \ No newline at end of file +© 2020 GitHub, Inc. \ No newline at end of file diff --git a/setup.py b/setup.py index 0ca6850..7a6def8 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,29 @@ +# Copyright (C) 2019-2020 Moez Ali +# License: MIT, moez.ali@queensu.ca + +""" + +PyCaret - An end-to-end open source machine learning library + +Module Author: +-------------- +pycaret.anomaly, Moez Ali +pycaret.classification, Moez Ali +pycaret.clustering, Moez Ali +pycaret.datasets, Moez Ali +pycaret.nlp, Moez Ali +pycaret.preprocess, Fahad Akbar +pycaret.regression, Moez Ali + +All modules except pycaret.preprocess licensed under: +Copyright (C) 2019-2020 Moez Ali + +pycaret.preprocess licensed under: +Copyright (C) 2019-2020 Fahad Akbar + + +""" + from setuptools import setup def readme(): @@ -8,7 +34,7 @@ def readme(): setup( name="pycaret", - version="0.0.20", + version="0.0.21", description="A Python package for supervised and unsupervised machine learning.", long_description=readme(), long_description_content_type="text/markdown", -- GitLab