first commit!
diff --git a/setup.py b/setup.py
new file mode 100755
index 0000000..8d8f66d
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+
+from setuptools import setup, find_packages
+
+
+with open('README.md') as f:
+ readme = f.read()
+
+with open('LICENSE') as f:
+ license = f.read()
+
+setup(
+ name='cvp-sanity',
+ version='0.1',
+ description='set of tests for MCP verification',
+ long_description=readme,
+ author='Mirantis',
+ license=license,
+ packages=find_packages(exclude=('tests', 'docs'))
+)