Metadata-Version: 2.1
Name: ed_design
Version: 1.0.6
Summary: Python package developed by Envidan A/S scoping to follow the design of the company brand. This package is only for internal use.
Home-page: https://dev.azure.com/EnviDan-AS/ed_design
Author: Martin Vidkjaer
Author-email: mav@envidan.dk
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >3.0.0
Description-Content-Type: text/markdown

# Introduction 
Design package for the company Envidan A/S intended for use with matplotlib and seaborn
- Hardcoded palettes and colormaps with company design colors
- Envidan logo in print and web form

# Getting Started
## Installation
You can install this package using
```
pip install ed_design
```
## Dependencies
Software dependencices are:
```
matplotlib
seaborn
pandas
numpy
```

## Use
### Palettes and colormaps for matplotlib and seaborn
```
import ed_design as edd

colors = edd.Colors()
colors.show_palette('all')

palette = colors.get_palette('blues')  # Use with categorical variabels
cmap = colors.get_cmap('BlGr')  # Use with continous variabels

my_own_camp = colors.create_cmap([color1, color2, color3], n_colors=256)
```

### Envidan logo
```
logo = edd.logo()
```

### Set style
```
edd.style()  # Sets envidan style with color prop cycle "normal" from edd.Colors()
edd.style('default')  # sets matplotlib default style
```


# Build and Test
TODO:
- Nothing at the momement

# Contribute
Only employees in Envidan has access to the repository

# Author
Martin VidkjÃ¦r, mav@envidan.dk
