Metadata-Version: 2.1
Name: categorical-colour-calendar
Version: 0.0.2
Summary: Highlight dates on monthly calendar(s) from categorical event data
Home-page: https://github.com/erichards97/categorical-colour-calendar
Author: Edward Richards
Author-email: 
License: UNKNOWN
Description: # Categorical Colour Calendar
        Highlight dates on a monthly calendar from categorical events
        ![Example](https://raw.githubusercontent.com/erichards97/categorical-colour-calendar/main/examples/img.png "Optional Title")
        ## 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 Date/Datetime compatibility
        - Check DataFrame/Series compatibility
        - Multiple events on one day
        - Automatically assigned colours if not specified
        - Tests
        - Allow override of default sizing/scaling values
        - Test different Python versions
        - Return fig/axes (?)
        - Colour schemes
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
