python-casacore


Namepython-casacore JSON
Version 3.5.2 PyPI version JSON
download
home_pagehttps://github.com/casacore/python-casacore
SummaryA wrapper around CASACORE, the radio astronomy library
upload_time2023-01-11 09:10:51
maintainer
docs_urlNone
authorGijs Molenaar
requires_python
licenseLGPL
keywords pyrap casacore utilities astronomy
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            python-casacore
===============

Python-casacore is a set of Python bindings for `casacore <https://code.google.com/p/casacore/>`_,
a c++ library used in radio astronomy. Python-casacore replaces the old
`pyrap <https://code.google.com/p/pyrap/>`_.


The python-casacore documentation can be found on `casacore.github.io/python-casacore <http://casacore.github.io/python-casacore>`_.

.. image:: https://travis-ci.org/casacore/python-casacore.svg?branch=master
    :target: https://travis-ci.org/casacore/python-casacore
.. image:: https://coveralls.io/repos/github/casacore/python-casacore/badge.svg?branch=master
    :target: https://coveralls.io/github/casacore/python-casacore?branch=master

Installation
============

Binary wheels
-------------

We distribute binary manylinux2014 for Linux, which requires pip >= 19.3. To
install python-casacore from a binary wheel run::

    $ pip install python-casacore


Debian & Ubuntu
---------------

python-casacore is now part of Debian and Ubuntu and can be installed using apt::

    $ sudo apt-get install python-casacore


from source
-----------

install these requirements:

* `setuptools <https://pypi.python.org/pypi/setuptools>`_
* `Casacore <https://github.com/casacore/casacore/>`__
* `Boost-python <http://www.boost.org/libs/python/doc/>`_
* `numpy <http://www.numpy.org/>`_ 
* `cfitsio <http://heasarc.gsfc.nasa.gov/fitsio/>`_

On ubuntu you can install these with::

    $ apt-get install casacore-dev python-numpy \
        python-setuptools libboost-python-dev libcfitsio3-dev wcslib-dev

* compile and install::

    $ pip install --no-binary python-casacore python-casacore

* or if you are installing from the source repository::

    $ python ./setup.py install
    
* If the compilation fails you might need to help the compiler find the paths to the
  boost and casacore libraries and headers. You can control this with the `CFLAGS` environment
  variable. For example on OS X when using homebrew and clang you need to do something like
  this::
  
    CFLAGS="-std=c++11 \
            -I/usr/local/Cellar/boost/1.68.0/include/ \
            -I/usr/local/include/  \
            -L/usr/local/Cellar/boost/1.68.0/lib \
            -L/usr/local/lib/" \
            pip install python-casacore

Support
=======

if you have any problems, suggestions or questions please open an issue on the
python-casacore github issue tracker.

Credits
=======

* `Ger van Diepen <gervandiepen@gmail.com>`_
* `Malte Marquarding <Malte.Marquarding@gmail.com>`_
* `Gijs Molenaar <gijs@pythonic.nl>`_
* `Tammo Jan Dijkema <dijkema@astron.nl>`_

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/casacore/python-casacore",
    "name": "python-casacore",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "pyrap,casacore,utilities,astronomy",
    "author": "Gijs Molenaar",
    "author_email": "gijs@pythonic.nl",
    "download_url": "https://files.pythonhosted.org/packages/2a/c1/a112f9511d2f3856f67da170bc90cf4bce039f9363817c22edb5d4d38706/python-casacore-3.5.2.tar.gz",
    "platform": null,
    "description": "python-casacore\n===============\n\nPython-casacore is a set of Python bindings for `casacore <https://code.google.com/p/casacore/>`_,\na c++ library used in radio astronomy. Python-casacore replaces the old\n`pyrap <https://code.google.com/p/pyrap/>`_.\n\n\nThe python-casacore documentation can be found on `casacore.github.io/python-casacore <http://casacore.github.io/python-casacore>`_.\n\n.. image:: https://travis-ci.org/casacore/python-casacore.svg?branch=master\n    :target: https://travis-ci.org/casacore/python-casacore\n.. image:: https://coveralls.io/repos/github/casacore/python-casacore/badge.svg?branch=master\n    :target: https://coveralls.io/github/casacore/python-casacore?branch=master\n\nInstallation\n============\n\nBinary wheels\n-------------\n\nWe distribute binary manylinux2014 for Linux, which requires pip >= 19.3. To\ninstall python-casacore from a binary wheel run::\n\n    $ pip install python-casacore\n\n\nDebian & Ubuntu\n---------------\n\npython-casacore is now part of Debian and Ubuntu and can be installed using apt::\n\n    $ sudo apt-get install python-casacore\n\n\nfrom source\n-----------\n\ninstall these requirements:\n\n* `setuptools <https://pypi.python.org/pypi/setuptools>`_\n* `Casacore <https://github.com/casacore/casacore/>`__\n* `Boost-python <http://www.boost.org/libs/python/doc/>`_\n* `numpy <http://www.numpy.org/>`_ \n* `cfitsio <http://heasarc.gsfc.nasa.gov/fitsio/>`_\n\nOn ubuntu you can install these with::\n\n    $ apt-get install casacore-dev python-numpy \\\n        python-setuptools libboost-python-dev libcfitsio3-dev wcslib-dev\n\n* compile and install::\n\n    $ pip install --no-binary python-casacore python-casacore\n\n* or if you are installing from the source repository::\n\n    $ python ./setup.py install\n    \n* If the compilation fails you might need to help the compiler find the paths to the\n  boost and casacore libraries and headers. You can control this with the `CFLAGS` environment\n  variable. For example on OS X when using homebrew and clang you need to do something like\n  this::\n  \n    CFLAGS=\"-std=c++11 \\\n            -I/usr/local/Cellar/boost/1.68.0/include/ \\\n            -I/usr/local/include/  \\\n            -L/usr/local/Cellar/boost/1.68.0/lib \\\n            -L/usr/local/lib/\" \\\n            pip install python-casacore\n\nSupport\n=======\n\nif you have any problems, suggestions or questions please open an issue on the\npython-casacore github issue tracker.\n\nCredits\n=======\n\n* `Ger van Diepen <gervandiepen@gmail.com>`_\n* `Malte Marquarding <Malte.Marquarding@gmail.com>`_\n* `Gijs Molenaar <gijs@pythonic.nl>`_\n* `Tammo Jan Dijkema <dijkema@astron.nl>`_\n",
    "bugtrack_url": null,
    "license": "LGPL",
    "summary": "A wrapper around CASACORE, the radio astronomy library",
    "version": "3.5.2",
    "project_urls": {
        "Homepage": "https://github.com/casacore/python-casacore"
    },
    "split_keywords": [
        "pyrap",
        "casacore",
        "utilities",
        "astronomy"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "637d3dcf23f63c79c097b35359614c9bd4542b7dd106e2966ab493b3decfcfe0",
                "md5": "18df701d406d64d3aec47a7cc656854d",
                "sha256": "e58723013dd1f4b456ca3cc9485df8a7949bd20cc81050835458fb03fdfac47d"
            },
            "downloads": -1,
            "filename": "python_casacore-3.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "18df701d406d64d3aec47a7cc656854d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 35297799,
            "upload_time": "2022-09-22T14:28:34",
            "upload_time_iso_8601": "2022-09-22T14:28:34.253418Z",
            "url": "https://files.pythonhosted.org/packages/63/7d/3dcf23f63c79c097b35359614c9bd4542b7dd106e2966ab493b3decfcfe0/python_casacore-3.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3782af558f5165c5636c67b32adb039812692e4d8b036fe8419b8829bc8ecfc6",
                "md5": "c814520a2782ea6fe0a0868d4325c0ed",
                "sha256": "ed08d7f009149b383b8cb99ee8515a7affde1bc6db1b4cab2994636504d3e07b"
            },
            "downloads": -1,
            "filename": "python_casacore-3.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c814520a2782ea6fe0a0868d4325c0ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 35382270,
            "upload_time": "2023-06-26T20:04:31",
            "upload_time_iso_8601": "2023-06-26T20:04:31.161337Z",
            "url": "https://files.pythonhosted.org/packages/37/82/af558f5165c5636c67b32adb039812692e4d8b036fe8419b8829bc8ecfc6/python_casacore-3.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1a9c87a021a918065831eddb3635a1a026679b65e37f9e4ac27f8c9da6c5d63",
                "md5": "a423c1dd74a35e14977c9b0f09e28f13",
                "sha256": "c62b08e01af9d93829a771869bf1d0e42c5e44c2abc1217e3485714ed7b321f4"
            },
            "downloads": -1,
            "filename": "python_casacore-3.5.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a423c1dd74a35e14977c9b0f09e28f13",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 34983271,
            "upload_time": "2022-09-22T14:28:40",
            "upload_time_iso_8601": "2022-09-22T14:28:40.718517Z",
            "url": "https://files.pythonhosted.org/packages/d1/a9/c87a021a918065831eddb3635a1a026679b65e37f9e4ac27f8c9da6c5d63/python_casacore-3.5.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35d36c03fce7bc19bafef4595833269fb6adde1cd371c453f949d5c6411a3544",
                "md5": "07408bb24485472d518ff2d1cf924e6b",
                "sha256": "ff9251e0cac9cf69db27d4b3ccaa2aacf38005856b704cf4806e2c3e44eeed66"
            },
            "downloads": -1,
            "filename": "python_casacore-3.5.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "07408bb24485472d518ff2d1cf924e6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 34954981,
            "upload_time": "2022-09-22T14:28:47",
            "upload_time_iso_8601": "2022-09-22T14:28:47.383161Z",
            "url": "https://files.pythonhosted.org/packages/35/d3/6c03fce7bc19bafef4595833269fb6adde1cd371c453f949d5c6411a3544/python_casacore-3.5.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f5b974b930460ee51f147c321d73bff96df60ef88314dbc71da064efda45950",
                "md5": "7d715799e1f9b6695c9df21b08e88439",
                "sha256": "702dade7a21069158839a74d9bbb770cb95bd1c1d9f4d54a79db1e4a71d01b5a"
            },
            "downloads": -1,
            "filename": "python_casacore-3.5.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7d715799e1f9b6695c9df21b08e88439",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 35084505,
            "upload_time": "2022-09-22T14:28:52",
            "upload_time_iso_8601": "2022-09-22T14:28:52.995851Z",
            "url": "https://files.pythonhosted.org/packages/0f/5b/974b930460ee51f147c321d73bff96df60ef88314dbc71da064efda45950/python_casacore-3.5.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b7e08128447a4564b5167225381dd30f461b1e0cac12e9cd2ffe944c3c009c8",
                "md5": "14c486a3150083b7be84ddc820ea5e51",
                "sha256": "69adea36329d913c350d7e9c8e0cb78fafbefed044c188081d7d1bcdda072425"
            },
            "downloads": -1,
            "filename": "python_casacore-3.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "14c486a3150083b7be84ddc820ea5e51",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 35054329,
            "upload_time": "2022-09-22T14:28:58",
            "upload_time_iso_8601": "2022-09-22T14:28:58.623053Z",
            "url": "https://files.pythonhosted.org/packages/1b/7e/08128447a4564b5167225381dd30f461b1e0cac12e9cd2ffe944c3c009c8/python_casacore-3.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ac1a112f9511d2f3856f67da170bc90cf4bce039f9363817c22edb5d4d38706",
                "md5": "efb1461995b53a1b387374aeef6c2f3d",
                "sha256": "ad70c8e08893eec928b3e38c099bda8863f5aa9d099fd00694ad2b0d48eba08f"
            },
            "downloads": -1,
            "filename": "python-casacore-3.5.2.tar.gz",
            "has_sig": false,
            "md5_digest": "efb1461995b53a1b387374aeef6c2f3d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 98645,
            "upload_time": "2023-01-11T09:10:51",
            "upload_time_iso_8601": "2023-01-11T09:10:51.986485Z",
            "url": "https://files.pythonhosted.org/packages/2a/c1/a112f9511d2f3856f67da170bc90cf4bce039f9363817c22edb5d4d38706/python-casacore-3.5.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-11 09:10:51",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "casacore",
    "github_project": "python-casacore",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "python-casacore"
}
        
Elapsed time: 0.23184s