Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -167,3 +167,4 @@ ENV/
.idea/
# distutils MANIFEST
MANIFEST
.pytest_cache
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ env:
- CIBW_TEST_REQUIRES='numpy pillow pytest'
- CIBW_TEST_COMMAND='python {project}/selftest.py'
- CIBW_BEFORE_BUILD_LINUX='yum install -y freetype-devel'
- CIBW_SKIP='cp34-* cp35-* cp39-* pp27-* pp36-*'
- TWINE_USERNAME='dhoese'
# TWINE_PASSWORD
- secure: Cmwxk41Nd+cu7l5Qhl7ZyCuwYg8WGCT53wqFBZMKIDZkNPVsnfaE8G9s1ZPTlpyoMEL5TioYTVjbjPXZD8M3z7OHHicXRP3mO53PrUDsETEl6/gR2h309ux/cWdOGgLd9s6CKT6wjtCT8Clft1cz61Y2ABOEtyTq3mrvPI0PyxE=
Expand Down
10 changes: 9 additions & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,12 @@ Files: agg2/*
Permission to copy, use, modify, sell and distribute this software
is granted provided this copyright notice appears in all copies.
This software is provided "as is" without express or implied
warranty, and with no claim as to its suitability for any purpose.
warranty, and with no claim as to its suitability for any purpose.

The OpenSans font used for testing has the following license:

These fonts are licensed under the Apache License, Version 2.0.

You can use them freely in your products & projects - print or digital, commercial or otherwise. However, you can't sell the fonts on their own.

This isn't legal advice, please consider consulting a lawyer and see the full license for all details.
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include aggdraw.cxx
include LICENSE.txt
recursive-include agg2 *.cpp
recursive-include agg2 *.h
recursive-include agg *.cpp
recursive-include agg *.h
Binary file added OpenSans-Regular.ttf
Binary file not shown.
18 changes: 15 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,23 @@
The aggdraw module
==================

.. image:: https://travis-ci.org/pytroll/aggdraw.svg?branch=master
.. image:: https://travis-ci.org/pytroll/aggdraw.svg?branch=main
:target: https://travis-ci.org/pytroll/aggdraw

.. image:: https://ci.appveyor.com/api/projects/status/9g7qt1kitwxya7u4/branch/master?svg=true
:target: https://ci.appveyor.com/project/pytroll/aggdraw/branch/master
.. image:: https://ci.appveyor.com/api/projects/status/9g7qt1kitwxya7u4/branch/main?svg=true
:target: https://ci.appveyor.com/project/pytroll/aggdraw/branch/main

----------------------------------------------------------------------
agg 2.4 notes
----------------------------------------------------------------------
aggdraw was ported to agg 2.4 and extended by

Dov Grobgeld <dov.grobgeld@gmail.com>
2016-05-30 Mon

----------------------------------------------------------------------
Original README
----------------------------------------------------------------------

A high-quality graphics engine for PIL, based on Maxim Shemanarev's
Anti-Grain Geometry library (from http://antigrain.com).
Expand Down
Loading