Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 955 Bytes

README.md

File metadata and controls

39 lines (27 loc) · 955 Bytes

Greasepaint

A python library to manipulate the faces. Think snapchat but weirder.

PyPI

pip install greasepaint

Examples

org ThirdEye

Simple example

import greasepaint as gp

gp.eyeliner('tessa1.jpg').show().save('tessa_liner.jpg')
gp.eyeshadow('tessa1.jpg', color='b').show().save('tessa_shadow.jpg')

Dev Notes:

  • Update the version number in greasepaint/_version.py
  • Test release, check coverage, and lint
  • Push the release to pypi live
fab lint
fab test
rm dist/ -rvf && python setup.py sdist
twine upload -r test dist/*
twine upload dist/*