mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
27 lines
902 B
Python
27 lines
902 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='django-auditlog',
|
|
version='0.6.9',
|
|
packages=['auditlog', 'auditlog.migrations', 'auditlog.management', 'auditlog.management.commands'],
|
|
package_dir={'': 'src'},
|
|
url='https://github.com/MacmillanPlatform/django-auditlog/',
|
|
license='MIT',
|
|
author='Jan-Jelle Kester',
|
|
maintainer='Alieh Rymašeŭski',
|
|
description='Audit log app for Django',
|
|
install_requires=[
|
|
'django-admin-rangefilter>=0.5.0',
|
|
'django-jsonfield>=1.0.0',
|
|
'python-dateutil>=2.6.0',
|
|
],
|
|
zip_safe=False,
|
|
classifiers=[
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Programming Language :: Python :: 3.7',
|
|
'Programming Language :: Python :: 3.8',
|
|
'License :: OSI Approved :: MIT License',
|
|
],
|
|
)
|