-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
31 lines (29 loc) · 1.05 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
#!/usr/bin/env python
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
setup(
name='django-useraudit',
version='1.7.1',
description='Django user audit utilities like logging user log in, disabling access when password expires or user is inactive',
long_description='Django user audit utilities like logging user log in, disabling access when password expires or user is inactive',
author='CCG, Murdoch University',
author_email='devops@ccg.murdoch.edu.au',
url='https://github.com/muccg/django-useraudit',
download_url='https://github.com/muccg/django-useraudit/releases',
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development"
],
zip_safe=True,
packages=[
'useraudit',
'useraudit.migrations',
],
include_package_date=True,
)