diff --git a/EDAspy.egg-info/PKG-INFO b/EDAspy.egg-info/PKG-INFO index 439a2f1..156c0cb 100644 --- a/EDAspy.egg-info/PKG-INFO +++ b/EDAspy.egg-info/PKG-INFO @@ -1,12 +1,12 @@ Metadata-Version: 2.1 Name: EDAspy -Version: 0.1.0 -Summary: This is a package where some estimation of distribution algorithms are implemented. +Version: 0.2.0 +Summary: Estimation of Distribution Algorithms Home-page: https://github.com/VicentePerezSoloviev/EDAspy Author: Vicente P. Soloviev Author-email: vicente.perez.soloviev@gmail.com -License: LGPL-2.1 -Download-URL: https://github.com/VicentePerezSoloviev/EDAspy/archive/0.1.0.tar.gz +License: LGPLv2+ +Download-URL: https://github.com/VicentePerezSoloviev/EDAspy/archive/0.2.0.tar.gz Description: # EDAspy ## Description @@ -160,19 +160,19 @@ Description: # EDAspy ## Getting started #### Prerequisites - R must be installed to use the multivariate EDA, with installed libraries c("bnlearn", "dbnR", "data.table") + R must be installed to use the multivariate EDA with Bayesian networks, with the following installed libraries: c("bnlearn", "dbnR", "data.table") To manage R from python, rpy2 package must also be installed. #### Installing ``` - pip install git+https://github.com/vicenteperezsoloviev/EDAspy.git#egg=EDApy + pip install EDAspy ``` Keywords: EDA,estimation,bayesian,evolutionary,algorithm,optimization Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Programming Language :: Python :: 3 -Classifier: License :: OSI Approved :: LGPL-2.1 +Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+) Classifier: Operating System :: OS Independent Requires-Python: >=3.6 Description-Content-Type: text/markdown diff --git a/README.md b/README.md index 1f97400..28bf765 100644 --- a/README.md +++ b/README.md @@ -156,5 +156,5 @@ To manage R from python, rpy2 package must also be installed. #### Installing ``` -pip install git+https://github.com/vicenteperezsoloviev/EDAspy.git#egg=EDAspy +pip install EDAspy ``` diff --git a/dist/EDApy-0.0.1-py3.7.egg b/dist/EDApy-0.0.1-py3.7.egg deleted file mode 100644 index 48471d5..0000000 Binary files a/dist/EDApy-0.0.1-py3.7.egg and /dev/null differ diff --git a/dist/EDApy-0.1.0.tar.gz b/dist/EDApy-0.1.0.tar.gz deleted file mode 100644 index 900a4c4..0000000 Binary files a/dist/EDApy-0.1.0.tar.gz and /dev/null differ diff --git a/dist/EDAspy-0.1.0-py3.7.egg b/dist/EDAspy-0.1.0-py3.7.egg deleted file mode 100644 index 48619de..0000000 Binary files a/dist/EDAspy-0.1.0-py3.7.egg and /dev/null differ diff --git a/dist/EDAspy-0.1.0.tar.gz b/dist/EDAspy-0.1.0.tar.gz new file mode 100644 index 0000000..fd2dd5b Binary files /dev/null and b/dist/EDAspy-0.1.0.tar.gz differ diff --git a/dist/EDAspy-0.2.0.tar.gz b/dist/EDAspy-0.2.0.tar.gz new file mode 100644 index 0000000..4b5de34 Binary files /dev/null and b/dist/EDAspy-0.2.0.tar.gz differ diff --git a/setup.py b/setup.py index 51cd4ff..8d85ee1 100644 --- a/setup.py +++ b/setup.py @@ -5,22 +5,22 @@ setuptools.setup( name="EDAspy", - version="0.1.0", + version="0.1.1", author="Vicente P. Soloviev", author_email="vicente.perez.soloviev@gmail.com", - description="This is a package where some estimation of distribution algorithms are implemented.", + description="Estimation of Distribution Algorithms", long_description=long_description, long_description_content_type="text/markdown", - download_url="https://github.com/VicentePerezSoloviev/EDAspy/archive/0.1.0.tar.gz", + download_url="https://github.com/VicentePerezSoloviev/EDAspy/archive/0.1.1.tar.gz", url="https://github.com/VicentePerezSoloviev/EDAspy", packages=setuptools.find_packages(), classifiers=[ 'Development Status :: 5 - Production/Stable', "Programming Language :: Python :: 3", - "License :: OSI Approved :: LGPL-2.1", + "License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)", "Operating System :: OS Independent", ], keywords=['EDA', 'estimation', 'bayesian', 'evolutionary', 'algorithm', 'optimization'], python_requires='>=3.6', - license="LGPL-2.1", + license="LGPLv2+", )