progrium / hookah

Asynchronous HTTP request dispatcher for webhooks

This URL has Read+Write access

commit  ef3d212fe95326aff7fec8423fe10821ef2e0df5
tree    1e1447a20f0ab887a2117ddd3bd7462b450aff37
parent  5baa9712d8d663ab1007dcadaae9420f73d27039
hookah / setup.py
100644 19 lines (16 sloc) 0.505 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup
 
setup(
  name = "hookah",
  version="0.0.9",
  description="The webhook event broker",
  
  author="Jeff Lindsay",
  author_email="progrium@gmail.com",
  url="http://github.com/progrium/hookah/tree/master",
  download_url="http://github.com/progrium/hookah/tarball/master",
  classifiers=[
    ],
  packages=['hookah'],
  data_files=[('twisted/plugins', ['twisted/plugins/hookah_plugin.py']),
              ('hookah', ['hookah/styles.css'])],
  scripts=['bin/hookah'],
)