forked from yprez/django-logentry-admin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (28 loc) · 918 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-logentry-admin',
author='Yuri Prezument',
author_email='[email protected]',
version='0.1.2a1',
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.4',
],
include_package_data=True,
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',
),
)