forked from yprez/django-logentry-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 865 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 865 Bytes
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
from distutils.core import setup
setup(
name='django-logentry-admin',
author='Yuri Prezument',
author_email='y@yprez.com',
version='0.1.2',
packages=['logentry_admin'],
license='ISC',
url='http://github.com/yprez/django-logentry-admin',
description='Add Django LogEntries the the Django admin site',
long_description=open('README.rst').read(),
install_requires=[
'Django >= 1.3',
],
classifiers=(
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
),
)