Skip to content

Commit

Permalink
Update some package-specific things (celiagg#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwiggins authored Nov 10, 2016
1 parent 493faeb commit f8613c7
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
*.egg-info
build
dist
MANIFEST

# celiagg specific
celiagg/_celiagg.cpp
24 changes: 15 additions & 9 deletions README.md → README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,33 @@ celiagg
=======

celiagg provides a simple, stateless canvas object that uses
[Anti-Grain Geometry 2.4] (svn://svn.code.sf.net/p/agg/svn) with Cython to
Anti-Grain Geometry 2.4 <svn://svn.code.sf.net/p/agg/svn> with Cython to
render directly into a Numpy array.

A respectably modern compiler is required to build celiagg (one supporting certain C++11
features).
A respectably modern compiler is required to build celiagg
(one supporting certain C++11 features).

# Installation
Installation
------------

## setup.py
`python setup.py install` should do the trick.
``python setup.py install`` should do the trick.

Dependencies
------------

## Dependencies
* Numpy
* Cython
* Freetype2 (optional)

## Contributing
Contributing
------------

We encourage contributions to celiagg! If you would like to contribute, just
fork the repository on GitHub, make your changes, and issue a pull request.

## History
History
-------

celiagg started as pyagg (https://github.com/erikhvatum/pyagg) but was renamed
to avoid clashing with PyAgg (https://github.com/karimbahgat/PyAgg).

Expand Down
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,17 @@ def configuration(parent_package='', top_path=None):
config.add_subpackage('celiagg')
return config

with open('README.rst', 'r') as fp:
long_description = fp.read()

setup(
name='celiagg',
configuration=configuration,
license='MIT',
version='0.1.0',
version='0.1.1',
description='Anti-Grain Geometry for Python (2 & 3) with Cython',
long_description=long_description,
url='https://github.com/celiagg/celiagg',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
Expand Down

0 comments on commit f8613c7

Please sign in to comment.