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