Metadata-Version: 1.1
Name: skyfield
Version: 0.2
Summary: Elegant astronomy for Python
Home-page: http://github.com/brandon-rhodes/python-skyfield/
Author: Brandon Rhodes
Author-email: brandon@rhodesmill.org
License: MIT
Description: 
        ====================================
         Welcome to the Skyfield Repository
        ====================================
        
        Skyfield is a pure-Python astronomy package
        that is compatible with both Python 2 and 3
        and makes it easy to generate high precision research-grade
        positions for planets and Earth satellites.
        
        ::
        
            from skyfield.api import earth, mars, now
            ra, dec, distance = earth(now()).observe(mars).radec()
        
            print(ra)
            print(dec)
            print(distance)
        
        ::
        
            09h 14m 50.35s
            +17deg 13' 02.6"
            2.18572863461 AU
        
        Its only binary dependency is NumPy.
        Skyfield can usually be installed with::
        
            pip install skyfield
        
        Here are the essential project links:
        
        * `Home page and documentation
          <http://rhodesmill.org/skyfield>`_.
        
        * `Skyfield package <https://pypi.python.org/pypi/skyfield>`_
          on the Python Package Index.
        
        * `Issue tracker
          <https://github.com/brandon-rhodes/python-skyfield/issues>`_
          on GitHub.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Scientific/Engineering :: Astronomy
