Added setup.py and setup.cfg

This commit is contained in:
Niles Rogoff 2016-12-22 12:58:03 -08:00 committed by Niles Rogoff
parent d4b971f5d1
commit f8d3d5d876
No known key found for this signature in database
GPG Key ID: B78B908F23430F80
2 changed files with 12 additions and 0 deletions

2
setup.cfg Normal file
View File

@ -0,0 +1,2 @@
[metadata]
description-file = readme.md

10
setup.py Executable file
View File

@ -0,0 +1,10 @@
#from distutils.core import setup
from setuptools import setup
setup(name='libpme',
version='1.0',
description="PNG metadata editor library",
author="Niles Rogoff",
author_email="me@niles.xyz",
url="http://github.com/nilesr/libpme",
py_modules=['libpme'],
)