-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 976 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
import os
from setuptools import setup, find_packages
README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.rst')
setup(
name='django-hoptoad',
version='0.4',
description='django-hoptoad is some simple Middleware for letting '
'Django-driven websites report their errors to Hoptoad.',
long_description=open(README_PATH).read(),
author='Steve Losh, Mahmoud Abdelkader, Dave Martorana',
author_email='steve@stevelosh.com, mahmoud@linux.com, themartorana@gmail.com',
url='http://github.com/themartorana/django-hoptoad/',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Operating System :: OS Independent',
'Framework :: Django',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
],
)