blob: 938612d2caae4d95a6fb422ff3bdcb216e48ffaa (
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 = "dmaap",
version = "1.3.3",
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"
]
)
|