summaryrefslogtreecommitdiffstats
path: root/dmaap/setup.py
blob: e4749c19fb8155dcb467c1f10da62f3b659ef0cf (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.3.1",
    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"
    ]
)