summaryrefslogtreecommitdiffstats
path: root/cns-tools
diff options
context:
space:
mode:
Diffstat (limited to 'cns-tools')
-rw-r--r--cns-tools/cnstools/__init__.py0
-rw-r--r--cns-tools/setup.py26
2 files changed, 26 insertions, 0 deletions
diff --git a/cns-tools/cnstools/__init__.py b/cns-tools/cnstools/__init__.py
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/cns-tools/cnstools/__init__.py
diff --git a/cns-tools/setup.py b/cns-tools/setup.py
new file mode 100644
index 00000000..2a803c28
--- /dev/null
+++ b/cns-tools/setup.py
@@ -0,0 +1,26 @@
+#!/usr/bin/python
+from setuptools import setup, find_packages
+
+version = '0.1'
+name = 'cns-tools'
+
+setup(
+ name=name,
+ version=version,
+ description='Red Hat Container-Native Storage Tools',
+ author='Red Hat, Inc.',
+ author_email='cns-qe@redhat.com',
+ packages=find_packages(),
+ classifiers=[
+ 'Development Status :: 3 - Alpha'
+ 'Intended Audience :: QE, Developers'
+ 'Operating System :: POSIX :: Linux'
+ 'Programming Language :: Python'
+ 'Programming Language :: Python :: 2'
+ 'Programming Language :: Python :: 2.6'
+ 'Programming Language :: Python :: 2.7'
+ 'Topic :: Software Development :: Testing'
+ ],
+ install_requires=['glusto'],
+ dependency_links=['http://github.com/loadtheaccumulator/glusto/tarball/master#egg=glusto'],
+)