1Metadata-Version: 1.2
2Name: PyMetis
3Version: 2020.1
4Summary: A Graph Partitioning Package
5Home-page: http://mathema.tician.de/software/pymetis
6Author: Andreas Kloeckner
7Author-email: inform@tiker.net
8License: wrapper: MIT/METIS: Apache 2
9Description: PyMetis: A Python Wrapper for METIS
10        ===================================
11
12        .. image:: https://gitlab.tiker.net/inducer/pymetis/badges/master/pipeline.svg
13            :alt: Gitlab Build Status
14            :target: https://gitlab.tiker.net/inducer/pymetis/commits/master
15        .. image:: https://github.com/inducer/pymetis/workflows/CI/badge.svg?branch=master&event=push
16            :alt: Github Build Status
17            :target: https://github.com/inducer/pymetis/actions?query=branch%3Amaster+workflow%3ACI+event%3Apush
18        .. image:: https://badge.fury.io/py/pymetis.png
19            :alt: Python Package Index Release Page
20            :target: https://pypi.org/project/pymetis/
21
22        PyMetis is a Python wrapper for the `Metis
23        <http://glaros.dtc.umn.edu/gkhome/views/metis>`_ graph partititioning software
24        by George Karypis, Vipin Kumar and others. It includes version 5.1.0 of Metis
25        and wraps it using the `Boost Python <http://www.boost.org/libs/python/doc/>`_
26        wrapper generator library. So far, it only wraps the most basic graph
27        partitioning functionality (which is enough for my current use), but extending
28        it in case you need more should be quite straightforward. Using PyMetis to
29        partition your meshes is really easy--essentially all you need to pass into
30        PyMetis is an adjacency list for the graph and the number of parts you would
31        like.
32
33        Installation
34        ============
35
36        The following line should do the job::
37
38            pip install pymetis
39
40Platform: UNKNOWN
41Classifier: Development Status :: 4 - Beta
42Classifier: Intended Audience :: Developers
43Classifier: Intended Audience :: Other Audience
44Classifier: Intended Audience :: Science/Research
45Classifier: License :: OSI Approved :: MIT License
46Classifier: License :: OSI Approved :: Apache Software License
47Classifier: Natural Language :: English
48Classifier: Programming Language :: C
49Classifier: Programming Language :: C++
50Classifier: Programming Language :: Python
51Classifier: Programming Language :: Python :: 3
52Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
53Classifier: Topic :: Scientific/Engineering
54Classifier: Topic :: Scientific/Engineering :: Mathematics
55Classifier: Topic :: Scientific/Engineering :: Visualization
56Classifier: Topic :: Software Development :: Libraries
57Requires-Python: ~=3.6
58