summaryrefslogtreecommitdiffstats
path: root/dmaap/setup.py
blob: 3eb16f7d4c9d33cdedbe0141325544d854b4815c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup, find_packages

setup(
    name = "cloudifydmaapplugin",
    version = "1.2.0+t.0.11",
    packages=find_packages(),
    author = "AT&T",
    description = ("Cloudify plugin for creating DMaaP feeds and topics, and setting up publishers and subscribers."),
    license = "",
    keywords = "",
    url = "",
    zip_safe=False,
    install_requires = [
        "python-consul==0.7.0"
    ]
)