-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (29 loc) · 982 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
import os
setup(
name = "django-audit-trail",
version = "0.3",
url = 'https://github.com/sjzabel/django-audit-trail',
download_url = 'https://github.com/sjzabel/django-audit-trail',
license = 'BSD',
description = "Audit trail provides a mechinism for logging user access and edits at the model level",
author = 'Stephen J. Zabel',
author_email = 'sjzabel@gmail.com',
packages = find_packages('.'),
classifiers = [
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)