1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
Metadata-Version: 2.1
Name: pyregion
Version: 2.3.0
Summary: python parser for ds9 region files
Author-email: Jae-Joon Lee <lee.j.joon@gmail.com>
License: MIT
Project-URL: Documentation, https://pyregion.readthedocs.io/
Project-URL: Homepage, https://github.com/astropy/pyregion
Project-URL: Source, https://github.com/astropy/pyregion
Project-URL: Tracker, https://github.com/astropy/pyregion/issues
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Astronomy
Requires-Python: >=3.10
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: astropy>=5
Requires-Dist: numpy>=1.23
Requires-Dist: pyparsing>=2
Provides-Extra: docs
Requires-Dist: matplotlib; extra == "docs"
Requires-Dist: sphinx; extra == "docs"
Requires-Dist: sphinx-astropy; extra == "docs"
Requires-Dist: sphinx-rtd-theme; extra == "docs"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-astropy; extra == "test"
pyregion
========
pyregion is a python module to parse ds9 region files.
It also supports ciao region files.
* Code: https://github.com/astropy/pyregion
* Docs: https://pyregion.readthedocs.io
* PyPI: http://pypi.python.org/pypi/pyregion
Installation: ``pip install pyregion``
Lead developer: Jae-Joon Lee ([@leejjoon](http://github.com/leejjoon))
FEATURES
--------
* ds9 and ciao region files.
* (physical, wcs) coordinate conversion to the image coordinate.
* convert regions to matplotlib patches.
* convert regions to spatial filter (i.e., generate mask images)
LICENSE
-------
All files are under MIT License. See LICENSE.
Status
------
.. image:: https://travis-ci.org/astropy/pyregion.svg?branch=master
:target: https://travis-ci.org/astropy/pyregion
.. image:: https://coveralls.io/repos/astropy/pyregion/badge.svg?branch=master
:target: https://coveralls.io/r/astropy/pyregion
New regions package
-------------------
See also the in-development ``regions`` package
at https://github.com/astropy/regions
a new astronomy package for regions based on Astropy.
|