django-auditlog/setup.py

14 lines
338 B
Python
Raw Normal View History

2013-10-21 21:08:04 +00:00
from distutils.core import setup
setup(
name='django-auditlog',
2014-07-08 15:01:51 +00:00
version='0.2.1',
2013-10-21 21:08:04 +00:00
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'
)