{ "info": { "author": "Jake VanderPlas", "author_email": "vanderplas@astro.washington.edu", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: Astronomy" ], "description": ".. -*- mode: rst -*-\n\n=======================================\nAstroML: Machine Learning for Astronomy\n=======================================\n\n.. image:: http://img.shields.io/badge/arXiv-1411.5039-orange.svg?style=flat\n :target: http://arxiv.org/abs/1411.5039\n.. image:: http://img.shields.io/travis/astroML/astroML/master.svg?style=flat\n :target: https://travis-ci.org/astroML/astroML/\n.. image:: http://img.shields.io/pypi/v/astroML.svg?style=flat\n :target: https://pypi.python.org/pypi/astroML\n.. image:: http://img.shields.io/pypi/dm/astroML.svg?style=flat\n :target: https://pypi.python.org/pypi/astroML\n.. image:: http://img.shields.io/badge/license-BSD-blue.svg?style=flat\n :target: https://github.com/astroml/astroml/blob/master/LICENSE\n\nAstroML is a Python module for machine learning and data mining\nbuilt on numpy, scipy, scikit-learn, and matplotlib,\nand distributed under the BSD license.\nIt contains a growing library of statistical and machine learning\nroutines for analyzing astronomical data in python, loaders for several open\nastronomical datasets, and a large suite of examples of analyzing and\nvisualizing astronomical datasets.\n\nThis project was started in 2012 by Jake VanderPlas to accompany the book\n*Statistics, Data Mining, and Machine Learning in Astronomy* by\nZeljko Ivezic, Andrew Connolly, Jacob VanderPlas, and Alex Gray.\n\n\nImportant Links\n===============\n- HTML documentation: http://www.astroML.org\n- Core source-code repository: http://github.com/astroML/astroML\n- Figure source-code repository: http://github.com/astroML/astroML-figures\n- Issue Tracker: http://github.com/astroML/astroML/issues\n- Mailing List: https://groups.google.com/forum/#!forum/astroml-general\n\n\nInstallation\n============\n\nThis package uses distutils, which is the default way of installing python\nmodules. **Before installation, make sure your system meets the prerequisites\nlisted in Dependencies, listed below.**\n\nCore\n----\nTo install the core ``astroML`` package in your home directory, use::\n\n pip install astroML\n\nA conda package for astroML is also available either on the conda-forge or\non the astropy conda channels::\n\n conda install -c astropy astroML\n\nThe core package is pure python, so installation should be straightforward\non most systems. To install from source, use::\n\n python setup.py install\n\nYou can specify an arbitrary directory for installation using::\n\n python setup.py install --prefix='/some/path'\n\nTo install system-wide on Linux/Unix systems::\n\n python setup.py build\n sudo python setup.py install\n\n\nDependencies\n============\nThere are two levels of dependencies in astroML. *Core* dependencies are\nrequired for the core ``astroML`` package. *Optional* dependencies are required\nto run some (but not all) of the example scripts. Individual example scripts\nwill list their optional dependencies at the top of the file.\n\nCore Dependencies\n-----------------\nThe core ``astroML`` package requires the following (some of the\nfunctionality might work with older versions):\n\n- Python_ version 2.7 and 3.4+\n- Numpy_ >= 1.8\n- Scipy_ >= 0.11\n- Scikit-learn_ >= 0.18\n- Matplotlib_ >= 2.1.1\n- AstroPy_ >= 1.2\n\n\nOptional Dependencies\n---------------------\nSeveral of the example scripts require specialized or upgraded packages.\nThese requirements are listed at the top of the particular scripts\n\n- HEALPy_ provides an interface to\n the HEALPix pixelization scheme, as well as fast spherical harmonic\n transforms.\n\nDevelopment\n===========\nThis package is designed to be a repository for well-written astronomy code,\nand submissions of new routines are encouraged. After installing the\nversion-control system Git_, you can check out\nthe latest sources from GitHub_ using::\n\n git clone git://github.com/astroML/astroML.git\n\nor if you have write privileges::\n\n git clone git@github.com:astroML/astroML.git\n\nContribution\n------------\nWe strongly encourage contributions of useful astronomy-related code:\nfor `astroML` to be a relevant tool for the python/astronomy community,\nit will need to grow with the field of research. There are a few\nguidelines for contribution:\n\nGeneral\n~~~~~~~\nAny contribution should be done through the github pull request system (for\nmore information, see the\n`help page `_\nCode submitted to ``astroML`` should conform to a BSD-style license,\nand follow the `PEP8 style guide `_.\n\nDocumentation and Examples\n~~~~~~~~~~~~~~~~~~~~~~~~~~\nAll submitted code should be documented following the\n`Numpy Documentation Guide`_. This is a unified documentation style used\nby many packages in the scipy universe.\n\nIn addition, it is highly recommended to create example scripts that show the\nusefulness of the method on an astronomical dataset (preferably making use\nof the loaders in ``astroML.datasets``). These example scripts are in the\n``examples`` subdirectory of the main source repository.\n\n.. _Numpy Documentation Guide: https://numpydoc.readthedocs.io/en/latest/format.html\n\nAuthors\n=======\n\nPackage Author\n--------------\n* Jake Vanderplas https://github.com/jakevdp\n http://jakevdp.github.com\n\nMaintainer\n----------\n* Brigitta Sipocz https://github.com/bsipocz\n\nCode Contribution\n-----------------\n* Morgan Fouesneau https://github.com/mfouesneau\n* Julian Taylor http://github.com/juliantaylor\n\n\n.. _Python: https://www.python.org\n.. _Numpy: https://www.numpy.org\n.. _Scipy: https://www.scipy.org\n.. _Scikit-learn: https://scikit-learn.org\n.. _Matplotlib: https://matplotlib.org\n.. _AstroPy: http://www.astropy.org/\n.. _HEALPy: https://github.com/healpy/healpy\n.. _Git: https://git-scm.com/\n.. _GitHub: https://www.github.com", "description_content_type": "", "docs_url": null, "download_url": "http://github.com/astroML/astroML", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://astroML.github.com", "keywords": "", "license": "BSD", "maintainer": "Jake VanderPlas", "maintainer_email": "vanderplas@astro.washington.edu", "name": "astroML", "package_url": "https://pypi.org/project/astroML/", "platform": "", "project_url": "https://pypi.org/project/astroML/", "project_urls": { "Download": "http://github.com/astroML/astroML", "Homepage": "http://astroML.github.com" }, "release_url": "https://pypi.org/project/astroML/0.4.1/", "requires_dist": null, "requires_python": "", "summary": "tools for machine learning and data mining in Astronomy", "version": "0.4.1" }, "last_serial": 5916375, "releases": { "0.1.1": [ { "comment_text": "", "digests": { "md5": "9f97eb98c9d9e4627deede6d1cbce949", "sha256": "229c6765edafedab1d10e6557a772181231e34e0fa517561e2f45800d17cb084" }, "downloads": -1, "filename": "astroML-0.1.1.tar.gz", "has_sig": false, "md5_digest": "9f97eb98c9d9e4627deede6d1cbce949", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 256997, "upload_time": "2013-01-19T17:52:06", "url": "https://files.pythonhosted.org/packages/bd/08/f4a38d8c7b5b00d044864da7d77528fed42d9308263d619ed2b7f99be7a3/astroML-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "e9c7b8c43b54ee61dba30f5c05cde50b", "sha256": "59ded1f5ea47ca012efb13226e80a471b86188b01a233afb489fe3dada03340a" }, "downloads": -1, "filename": "astroML-0.1.2.tar.gz", "has_sig": false, "md5_digest": "e9c7b8c43b54ee61dba30f5c05cde50b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 260108, "upload_time": "2013-02-28T07:01:23", "url": "https://files.pythonhosted.org/packages/c3/de/2fc7d97e77d8c5878342d73758a51f47c20ace521bbc94713dc8ee44e064/astroML-0.1.2.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "85f558368546660564f20b30efafb024", "sha256": "d243b96b7d898f4cf0cb8b6ef6e37d08b6439e4a8461aaa8b20ee412112c2c09" }, "downloads": -1, "filename": "astroML-0.2.tar.gz", "has_sig": false, "md5_digest": "85f558368546660564f20b30efafb024", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 239169, "upload_time": "2013-12-09T23:47:00", "url": "https://files.pythonhosted.org/packages/ba/5b/ab0f1043c6654f65c5c15b5efda4eba0a1e9c38ff4122a7ab3cfe6df22d3/astroML-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "56d5c281ca079eb569ef1898be1604db", "sha256": "ea6d0119593aed0e0dadc79c613ac0bddad95e6f12151237562a4fd67552b2b8" }, "downloads": -1, "filename": "astroML-0.3.tar.gz", "has_sig": false, "md5_digest": "56d5c281ca079eb569ef1898be1604db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 242925, "upload_time": "2015-01-28T20:35:21", "url": "https://files.pythonhosted.org/packages/08/8f/3d54d0c6b618bf3c19f9aeba5faf0fe6dd5be61bcc3d81174c8f6ab2e660/astroML-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "ec617abfe934ae66acc0d63a97901406", "sha256": "a9a934ab5c3e2d285469cb4b42cb52a958399dfdd2fd363b76df3e98d147b744" }, "downloads": -1, "filename": "astroML-0.4.tar.gz", "has_sig": true, "md5_digest": "ec617abfe934ae66acc0d63a97901406", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100771, "upload_time": "2019-03-06T18:53:55", "url": "https://files.pythonhosted.org/packages/1e/df/755e28d600835b74779d0f8199015c8703980f6c61b433d548b975d8f7ec/astroML-0.4.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "4b84a966ff3dd4566a6f13eba7756404", "sha256": "a4efa8acee889c92088ff2433d24793d24cfe7aba15d523e2e0cc12d81e4b899" }, "downloads": -1, "filename": "astroML-0.4.1.tar.gz", "has_sig": true, "md5_digest": "4b84a966ff3dd4566a6f13eba7756404", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105183, "upload_time": "2019-10-02T06:32:58", "url": "https://files.pythonhosted.org/packages/e6/16/bb2d2784c09bfa9ed1ac5c3caf32cc203a1f8614fd5361f99ee46b4e04dc/astroML-0.4.1.tar.gz" } ], "0.4.post1": [ { "comment_text": "", "digests": { "md5": "6dd68f5677991f94b33e65b46e936185", "sha256": "7fdb8cc7c39fcf1a9f42270669a6147925c9e426b2bed19851638f722d7bef57" }, "downloads": -1, "filename": "astroML-0.4.post1.tar.gz", "has_sig": true, "md5_digest": "6dd68f5677991f94b33e65b46e936185", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100924, "upload_time": "2019-03-13T17:34:04", "url": "https://files.pythonhosted.org/packages/8f/87/8f290e67fb1b228b208d58087ff8de2287bd8556f94cc1f025b3e769786f/astroML-0.4.post1.tar.gz" } ], "0.4rc1": [ { "comment_text": "", "digests": { "md5": "2ec25649b325166dd2712c87389e38e4", "sha256": "86ca507da720811103aa9cce40805bd2c05d0c56c25b2665a11ffcd402521d73" }, "downloads": -1, "filename": "astroML-0.4rc1.tar.gz", "has_sig": true, "md5_digest": "2ec25649b325166dd2712c87389e38e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100164, "upload_time": "2019-01-07T10:28:30", "url": "https://files.pythonhosted.org/packages/43/c6/f04ad22a99444d35cc01cc5aea5d852fa68dc0b3279d3d02ae8dd10a3e51/astroML-0.4rc1.tar.gz" } ], "0.4rc2": [ { "comment_text": "", "digests": { "md5": "00e8d7a800910c3f08df009abc71ca4f", "sha256": "7934eae5e978315d1b0b7dda7427233a199e82edd91b340d7b5de2517eb236d2" }, "downloads": -1, "filename": "astroML-0.4rc2.tar.gz", "has_sig": true, "md5_digest": "00e8d7a800910c3f08df009abc71ca4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100621, "upload_time": "2019-03-05T09:39:32", "url": "https://files.pythonhosted.org/packages/71/6c/9c34e4f9363f14232cffd4d3efcf045f2a0a175f165d3b33448cfb28af83/astroML-0.4rc2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4b84a966ff3dd4566a6f13eba7756404", "sha256": "a4efa8acee889c92088ff2433d24793d24cfe7aba15d523e2e0cc12d81e4b899" }, "downloads": -1, "filename": "astroML-0.4.1.tar.gz", "has_sig": true, "md5_digest": "4b84a966ff3dd4566a6f13eba7756404", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105183, "upload_time": "2019-10-02T06:32:58", "url": "https://files.pythonhosted.org/packages/e6/16/bb2d2784c09bfa9ed1ac5c3caf32cc203a1f8614fd5361f99ee46b4e04dc/astroML-0.4.1.tar.gz" } ] }