Metadata-Version: 2.0
Name: sciencedates
Version: 1.3.1
Summary: Date conversions used in the sciences.
Home-page: https://github.com/scivision/sciencedates
Author: Michael Hirsch, Ph.D.
Author-email: UNKNOWN
License: UNKNOWN
Description-Content-Type: UNKNOWN
Platform: UNKNOWN
Classifier: Intended Audience :: Science/Research
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=2.7
Requires-Dist: numpy
Requires-Dist: python-dateutil
Requires-Dist: pytz
Provides-Extra: plot
Requires-Dist: matplotlib; extra == 'plot'
Requires-Dist: xarray; extra == 'plot'
Provides-Extra: tests
Requires-Dist: coveralls; extra == 'tests'
Requires-Dist: nose; extra == 'tests'

.. image:: https://zenodo.org/badge/81351748.svg
   :target: https://zenodo.org/badge/latestdoi/81351748

.. image:: https://travis-ci.org/scivision/sciencedates.svg?branch=master
    :target: https://travis-ci.org/scivision/sciencedates

.. image:: https://coveralls.io/repos/github/scivision/sciencedates/badge.svg?branch=master
    :target: https://coveralls.io/github/scivision/sciencedates?branch=master

.. image:: https://api.codeclimate.com/v1/badges/47852e6e896d404d20a5/maintainability
   :target: https://codeclimate.com/github/scivision/sciencedates/maintainability
   :alt: Maintainability

============
sciencedates
============
Date conversions used in the sciences.

.. contents::

Install
=======
::

    python -m pip install -e .


Examples
========

.. code:: python

    from pytz import UTC
    from datetime import datetime
    import sciencedates as sd

    T = datetime(2013,7,2,12,0,0,tzinfo=UTC)
    yd,utsec=sd.datetime2yd(T)


