mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-17 06:30:27 +00:00
17 lines
492 B
Python
17 lines
492 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='django-auditlog',
|
|
version='0.4.4',
|
|
packages=['auditlog', 'auditlog.migrations', 'auditlog.management', 'auditlog.management.commands'],
|
|
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-jsonfield>=1.0.0',
|
|
'python-dateutil==2.6.0'
|
|
],
|
|
zip_safe=False
|
|
)
|