forked from mridang/django-erroneous
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 1.04 KB
/
setup.py
File metadata and controls
37 lines (36 loc) · 1.04 KB
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
import sys
from setuptools import setup, find_packages
setup(
name = "django-erroneous",
package_data = {
'erroneous': [
'README.rst',
'LICENSE.txt',
'erroneous.templates',
],
},
author = "Mridang Agarwalla",
author_email = "mridang.agarwalla@gmail.com",
download_url='http://github.com/mridang/django-erroneous/downloads',
description = "django-erroneous makes it easy to collect and log Django application errors.",
url = "http://github.org/mridang/django-erroneous",
classifiers = [
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
packages = [
'erroneous',
'erroneous.migrations',
],
zip_safe = False,
license = "BSD License",
install_requires = [
'Django>=1.4',
'South>=0.7.2'
],
version = '0.2.0',
)