mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-05-02 04:34:43 +00:00
14 lines
338 B
Python
14 lines
338 B
Python
|
|
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'
|
||
|
|
)
|