mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
17 lines
427 B
Python
17 lines
427 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='django-auditlog',
|
|
version='0.4.3',
|
|
packages=['auditlog', 'auditlog.migrations'],
|
|
package_dir={'': 'src'},
|
|
url='https://github.com/jjkester/django-auditlog',
|
|
license='MIT',
|
|
author='Jan-Jelle Kester',
|
|
description='Audit log app for Django',
|
|
install_requires=[
|
|
'Django>=1.8',
|
|
'django-jsonfield>=1.0.0',
|
|
],
|
|
zip_safe=False
|
|
)
|