Skip to content

Commit

Permalink
__version__ variable
Browse files Browse the repository at this point in the history
  • Loading branch information
VicentePerezSoloviev committed Sep 14, 2022
1 parent dc5b339 commit 414cfe5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions EDAspy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
# coding: utf-8

# __init__.py

__version__ = '1.0.0'
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 414cfe5

Please sign in to comment.