-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (31 loc) · 843 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
#!/usr/bin/env python
from setuptools import setup
from os import path
setup(
name = 'bambu-webhooks',
version = '2.0',
description = 'Create webhooks and allow users to assign URLs to them',
author = 'Steadman',
author_email = '[email protected]',
url = 'https://github.com/iamsteadman/bambu-webhooks',
long_description = open(path.join(path.dirname(__file__), 'README')).read(),
install_requires = [
'Django>=1.4',
'requests',
'bambu-cron>=2.0'
],
packages = [
'bambu_webhooks',
'bambu_webhooks.migrations'
],
package_data = {
'bambu_webhooks': [
'templates/webhooks/*.html'
]
},
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django'
]
)