-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (30 loc) · 980 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
import os
from setuptools import find_packages, setup
ROOT = os.path.abspath(os.path.dirname(__file__))
setup(
name = 'django-hookbox',
version = '0.4dev',
description = 'Integrate hookbox with Django.',
long_description = open(os.path.join(ROOT, 'README.rst')).read(),
author = 'Duane Griffin',
author_email = '[email protected]',
url = 'https://github.com/duaneg/django-hookbox',
license = 'BSD',
packages = find_packages(),
install_requires = [
'django >= 1.3',
'hookbox >= 0.3.4dev',
'testfixtures >= 1.9',
],
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities',
],
)