Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added dist/pygmo-ci4esa-2.15.0.tar.gz
Binary file not shown.
Binary file added dist/pygmo_ci4esa-2.15.0-py3-none-any.whl
Binary file not shown.
47 changes: 47 additions & 0 deletions pygmo_ci4esa.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -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: [email protected]
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
30 changes: 30 additions & 0 deletions pygmo_ci4esa.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions pygmo_ci4esa.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions pygmo_ci4esa.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pygmo
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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="[email protected]",
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',
)