Metadata-Version: 2.0
Name: pygraphml
Version: 2.1.4
Summary: Small library to parse GraphML files in Python
Home-page: https://github.com/hadim/pygraphml/
Author: Hadrien Mary
Author-email: hadrien.mary@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3

[![Build Status](https://travis-ci.org/hadim/pygraphml.svg?branch=master)](https://travis-ci.org/hadim/pygraphml)

[![DOI](https://zenodo.org/badge/4163/hadim/pygraphml.svg)](https://zenodo.org/badge/latestdoi/4163/hadim/pygraphml)


# pygraphml

`pygraphml` is a small Python library designed to parse GraphML file. To
see specification about GraphML, see http://graphml.graphdrawing.org/

Documentation and tutorial are available at http://hadim.github.io/pygraphml/. A notebook is also available [here](example.ipynb).

# Requirements

- Python > 2.7 and > 3.3
- NetworkX (http://networkx.lanl.gov/): only for the visualization

# Install

`pip install pygraphml`

# How to cite

If you use this library for your research, don't forget to cite it : [![DOI](https://zenodo.org/badge/4163/hadim/pygraphml.svg)](https://zenodo.org/badge/latestdoi/4163/hadim/pygraphml).

# License

Under BSD license. See [LICENSE](LICENSE).

# Authors

- Hadrien Mary <hadrien.mary@gmail.com>
- Nick Hamilton <n.hamilton@imb.uq.edu.au>

# How to release a new version

- Modify version number in `pygraphml/__init__.py`
- Commit and push changes
- Make Github release
- Create packages : `python setup.py sdist bdist_wheel`
- Upload packages : `twine upload dist/*`


