-
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.
- Loading branch information
1 parent
dc5b339
commit 414cfe5
Showing
2 changed files
with
8 additions
and
2 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 |
---|---|---|
|
@@ -2,3 +2,5 @@ | |
# coding: utf-8 | ||
|
||
# __init__.py | ||
|
||
__version__ = '1.0.0' |
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 |
---|---|---|
|
@@ -3,12 +3,16 @@ | |
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
__version__ = '1.0.0' # also defined in EDAspy/__init__.py | ||
|
||
setuptools.setup( | ||
name="EDAspy", | ||
version="1.0.0", | ||
version=__version__, | ||
author="Vicente P. Soloviev", | ||
author_email="[email protected]", | ||
description="Estimation of Distribution Algorithms for optimization", | ||
description="EDAspy is a Python package that implements Estimation of Distribution Algorithms. EDAspy allows to" | ||
"either use already existing implementations or customize the EDAs baseline easily building it by" | ||
"modules so new research can be easily developed. It also has several benchmarks for comparisons.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
download_url="https://github.com/VicentePerezSoloviev/EDAspy/archive/1.0.0.tar.gz", | ||
|