-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
24 lines (22 loc) · 951 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
from setuptools import setup
version = __import__('rest_hooks_delivery').VERSION
setup(
name='django-rest-hooks-delivery',
description=('Various webhook deliverers for django-rest-hooks and '
'django-rest-hooks-ng.'),
version=version,
author='PressLabs',
author_email='ping@presslabs.com',
url='http://github.com/PressLabs/django-rest-hooks-delivery',
install_requires=['Django>=1.7', 'requests', 'django-jsonfield'],
packages=['rest_hooks_delivery'],
include_package_data=True,
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)