Add setup.py

This commit is contained in:
Jan-Jelle Kester 2013-10-21 23:08:04 +02:00
parent 9ab3ca8db7
commit cc393c9611

13
setup.py Normal file
View file

@ -0,0 +1,13 @@
from distutils.core import setup
setup(
name='django-auditlog',
version='0.1.0',
packages=['auditlog',],
package_dir={'': 'src'},
url='https://github.com/jjkester/django-auditlog',
license='MIT',
author='Jan-Jelle Kester',
author_email='janjelle@jjkester.nl',
description='Audit log app for Django'
)