Skip to content

Commit

Permalink
Merge pull request #6 from VicentePerezSoloviev/devel
Browse files Browse the repository at this point in the history
Devel
  • Loading branch information
VicentePerezSoloviev authored Jun 10, 2020
2 parents 5453a69 + deb120e commit 97fa870
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions EDAspy.egg-info/PKG-INFO
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: 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
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Binary file removed dist/EDApy-0.0.1-py3.7.egg
Binary file not shown.
Binary file removed dist/EDApy-0.1.0.tar.gz
Binary file not shown.
Binary file removed dist/EDAspy-0.1.0-py3.7.egg
Binary file not shown.
Binary file added dist/EDAspy-0.1.0.tar.gz
Binary file not shown.
Binary file added dist/EDAspy-0.2.0.tar.gz
Binary file not shown.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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+",
)

0 comments on commit 97fa870

Please sign in to comment.