Initial layout of Designate tempest plugin

See https://review.openstack.org/283511 for history.

Change-Id: I7733e8786d6b525a7c9a8d4f12add329cd030d9d
Partially-Implements: blueprint designate-tempest-plugin
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..6960fa2
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,44 @@
+[metadata]
+name = designate-tempest-plugin
+summary = OpenStack DNS As A Service (Designate) Functional Tests
+description-file =
+    README.rst
+author = OpenStack
+author-email = openstack-dev@lists.openstack.org
+home-page = http://docs.openstack.org/developer/designate/
+classifier =
+    Environment :: OpenStack
+    Environment :: No Input/Output (Daemon)
+    Intended Audience :: Information Technology
+    Intended Audience :: System Administrators
+    License :: OSI Approved :: Apache Software License
+    Operating System :: POSIX :: Linux
+    Programming Language :: Python
+    Programming Language :: Python :: 2
+    Programming Language :: Python :: 2.7
+    Topic :: Internet :: Name Service (DNS)
+
+[global]
+setup-hooks =
+    pbr.hooks.setup_hook
+
+[files]
+packages =
+    designate_tempest_plugin
+
+[entry_points]
+tempest.test_plugins =
+    designate = designate_tempest_plugin.plugin:DesignateTempestPlugin
+
+[build_sphinx]
+all_files = 1
+build-dir = doc/build
+source-dir = doc/source
+
+[egg_info]
+tag_build =
+tag_date = 0
+tag_svn_revision = 0
+
+[wheel]
+universal = 1