diff --git a/LICENSE b/LICENSE index 4e1e954aa176b3d7a238023613a948371605de9f..1d6ff56b2f8da30fd314b0f5e74e4b60b8c7f653 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 38a5ea169d339a33787e561b1acc8af5c7f99897..e16dd6c910f0222584b6079c85797c00228b74a8 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 0ca68500fbf46975fbbba534c0e9a427bf343ad3..7a6def898df43de64ae35f1345a65ad3cb0d415a 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",