Metadata-Version: 2.1
Name: categorical-colour-calendar
Version: 0.0.4
Summary: Draw monthly calendars and highlight dates
Home-page: https://github.com/erichards97/categorical-colour-calendar
Author: Edward Richards
Author-email: 
License: UNKNOWN
Description: # Categorical Colour Calendar
        Library for drawing monthly calendars and highlighting dates from categorical events
        ## Example
        ![Example](https://raw.githubusercontent.com/erichards97/categorical-colour-calendar/main/examples/img.png "Optional Title")
        For more examples see the docs
        ## Setup
        ```
        pip install categorical-colour-calendar
        ```
        ## Usage
        ```python
        import pandas as pd
        from cccalendar import draw_colour_calendar
        
        dates = pd.date_range(start='2021-01-01', end='2021-05-01')
        df = pd.Series(range(len(dates)), index=dates)
        draw_colour_calendar(df, {})
        ```
        ## Development
        ```
        pip install -e .[dev]
        ```
        
        ## To Do
        - Check DataFrame/Series compatibility
        - Multiple events on one day
        - Tests
        - Allow override of default sizing/scaling values
        - Test different Python versions
        - Return fig/axes
        - Docs
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Provides-Extra: dev
