-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from VicentePerezSoloviev/devel
Devel
- Loading branch information
Showing
8 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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: [email protected] | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,22 +5,22 @@ | |
|
||
setuptools.setup( | ||
name="EDAspy", | ||
version="0.1.0", | ||
version="0.1.1", | ||
author="Vicente P. Soloviev", | ||
author_email="[email protected]", | ||
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+", | ||
) |