diff --git a/dist/pygmo-ci4esa-2.15.0.tar.gz b/dist/pygmo-ci4esa-2.15.0.tar.gz new file mode 100644 index 00000000..6ae06a73 Binary files /dev/null and b/dist/pygmo-ci4esa-2.15.0.tar.gz differ diff --git a/dist/pygmo_ci4esa-2.15.0-py3-none-any.whl b/dist/pygmo_ci4esa-2.15.0-py3-none-any.whl new file mode 100644 index 00000000..0afa8fc0 Binary files /dev/null and b/dist/pygmo_ci4esa-2.15.0-py3-none-any.whl differ diff --git a/pygmo_ci4esa.egg-info/PKG-INFO b/pygmo_ci4esa.egg-info/PKG-INFO new file mode 100644 index 00000000..31f09512 --- /dev/null +++ b/pygmo_ci4esa.egg-info/PKG-INFO @@ -0,0 +1,47 @@ +Metadata-Version: 2.1 +Name: pygmo-ci4esa +Version: 2.15.0 +Summary: A platform to perform parallel computations of optimisation tasks (global and local) via the asynchronous generalized island model. +Home-page: https://github.com/esa/pygmo2 +Author: Dario Izzo +Author-email: dario.izzo@esa.int +License: UNKNOWN +Description: pygmo + ===== + + [![Build Status](https://img.shields.io/circleci/project/github/esa/pygmo2/master.svg?style=for-the-badge)](https://circleci.com/gh/esa/pygmo2) + [![Build Status](https://img.shields.io/travis/esa/pygmo2/master.svg?logo=travis&style=for-the-badge)](https://travis-ci.org/esa/pygmo2) + [![Build Status](https://img.shields.io/azure-devops/build/bluescarni/00914570-450b-4bd6-a575-d8c64fc25d1e/5?style=for-the-badge)](https://dev.azure.com/bluescarni/pygmo/_build) + + [![Anaconda-Server Badge](https://img.shields.io/conda/vn/conda-forge/pygmo.svg?style=for-the-badge)](https://anaconda.org/conda-forge/pygmo) + [![PyPI](https://img.shields.io/pypi/v/pygmo.svg?style=for-the-badge)](https://pypi.python.org/pypi/pygmo) + + [![Join the chat at https://gitter.im/pagmo2/Lobby](https://img.shields.io/badge/gitter-join--chat-green.svg?logo=gitter-white&style=for-the-badge)](https://gitter.im/pagmo2/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) + + [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1045337.svg)](https://doi.org/10.5281/zenodo.1045336) + + pygmo is a scientific Python library for massively parallel optimization. It is built around the idea + of providing a unified interface to optimization algorithms and to optimization problems and to make their + deployment in massively parallel environments easy. + + If you are using pygmo as part of your research, teaching, or other activities, we would be grateful if you could star + the repository and/or cite our work. The DOI of the latest version and other citation resources are available + at [this link](https://doi.org/10.5281/zenodo.1045336). + + The full documentation can be found [here](https://esa.github.io/pygmo2/). + + Upgrading from pygmo 1.x.x + ========================== + + If you were using the old pygmo, have a look here on some technical data on what and why a completely new API + and code was developed: https://github.com/esa/pagmo2/wiki/From-1.x-to-2.x + + You will find many tutorials in the documentation, we suggest to skim through them to realize the differences. + The new pygmo (version 2) should be considered (and is) as an entirely different code. + +Platform: UNKNOWN +Classifier: Programming Language :: Python :: 3 +Classifier: License :: OSI Approved :: MIT License +Classifier: Operating System :: OS Independent +Requires-Python: >=3.6 +Description-Content-Type: text/markdown diff --git a/pygmo_ci4esa.egg-info/SOURCES.txt b/pygmo_ci4esa.egg-info/SOURCES.txt new file mode 100644 index 00000000..301ccb52 --- /dev/null +++ b/pygmo_ci4esa.egg-info/SOURCES.txt @@ -0,0 +1,30 @@ +README.md +setup.py +pygmo/__init__.py +pygmo/_algorithm_test.py +pygmo/_bfe_test.py +pygmo/_check_deps.py +pygmo/_ipyparallel_utils.py +pygmo/_island_test.py +pygmo/_mp_utils.py +pygmo/_patch_algorithm.py +pygmo/_patch_bfe.py +pygmo/_patch_island.py +pygmo/_patch_problem.py +pygmo/_patch_r_policy.py +pygmo/_patch_s_policy.py +pygmo/_patch_topology.py +pygmo/_problem_test.py +pygmo/_py_algorithms.py +pygmo/_py_bfes.py +pygmo/_py_islands.py +pygmo/_py_problems.py +pygmo/_r_policy_test.py +pygmo/_s_policy_test.py +pygmo/_topology_test.py +pygmo/test.py +pygmo/plotting/__init__.py +pygmo_ci4esa.egg-info/PKG-INFO +pygmo_ci4esa.egg-info/SOURCES.txt +pygmo_ci4esa.egg-info/dependency_links.txt +pygmo_ci4esa.egg-info/top_level.txt \ No newline at end of file diff --git a/pygmo_ci4esa.egg-info/dependency_links.txt b/pygmo_ci4esa.egg-info/dependency_links.txt new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/pygmo_ci4esa.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/pygmo_ci4esa.egg-info/top_level.txt b/pygmo_ci4esa.egg-info/top_level.txt new file mode 100644 index 00000000..0f923d39 --- /dev/null +++ b/pygmo_ci4esa.egg-info/top_level.txt @@ -0,0 +1 @@ +pygmo diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..c3f9775a --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + +setuptools.setup( + name="pygmo-ci4esa", + version="2.15.0", + author="Dario Izzo", + author_email="dario.izzo@esa.int", + description="A platform to perform parallel computations of optimisation tasks (global and local) via the asynchronous generalized island model.", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/esa/pygmo2", + packages=setuptools.find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], + python_requires='>=3.6', +)