Metadata-Version: 1.1
Name: months
Version: 2.0.0
Summary: Python library for representing specific months
Home-page: https://github.com/kstark/months
Author: Kyle Stark
Author-email: kstarked@gmail.com
License: MIT
Description: ===============================
        months
        ===============================
        
        .. image:: https://img.shields.io/travis/kstark/months.svg
                :target: https://travis-ci.org/kstark/months
        
        .. image:: https://img.shields.io/pypi/v/months.svg
                :target: https://pypi.python.org/pypi/months
        
        .. image:: https://readthedocs.org/projects/months/badge/?version=latest
                :target: https://readthedocs.org/projects/months/?badge=latest
                :alt: Documentation Status
        
        
        Python library for representing specific months
        
        * Free software: MIT license
        * Documentation: https://months.readthedocs.org.
        
        Features
        --------
        
        - Represent specific months along with their years
        - Convert to and from native datetime and date objects
        - Convenient math operations for adding / subtracting month intervals
        - Convenient operations for displaying months
        
        
        
        
        History
        -------
        
        2.0.0 (2019-10-18)
        ---------------------
        
        * Thanks to nolanbconaway for their contributions!
        * New methods to handle relations between months:
           * ``month.to(other)`` for generating intervals of months.
           * ``month.distance(other)`` for computing distance between months.
        * New methods for month date info
           * ``month.n_days`` to return the number of days in the month.
           * ``month.dates`` to return a list of all days in the month.
           * ``month.nth(day)`` to return a specific day in the month.
        * ``__int__`` and ``__float__`` methods added.
           * Also a ``month.gregorian_month_number`` method to compute number of months
             since year 0.
        
        1.1.0 (2019-10-18)
        ---------------------
        
        * Support up to Python 3.8, drop explicit support for 2.6/3.2/3.3
        * Raise TypeError on invalid addition/subtraction instead of ValueError
        
        1.0.0 (2015-04-13)
        ---------------------
        
        * Documentation added
        * 2.6 support added
        * Tests for bad math added
        
        0.1.0 (2015-04-13)
        ---------------------
        
        * First release on PyPI.
        
Keywords: months
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
