-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (32 loc) · 1.06 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from setuptools import find_packages, setup
version = '1.0.0'
install_requires={
'simplejson>=3.8.0,<4.0.0',
'djangorestframework>=3.2.4,<4.0.0',
}
setup(
name='django-model-logging',
packages=find_packages(),
include_package_data=True,
version=version,
description='Generic and secure logging for changes to Django model instances',
long_description=open('README.md').read(),
author='Incuna',
author_email='admin@incuna.com',
url='https://github.com/incuna/django-model-logging/',
install_requires=install_requires,
extras_require={},
zip_safe=False,
license='BSD',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Testing',
],
)