Initial commit of Crowd Gerrit Group Sync

Change-Id: I9614ed63baf9ac0f4166ae730a017854522922e7
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..2727686
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,26 @@
+#!/usr/bin/env python
+
+# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
+# SPDX-License-Identifier: Apache-2.0
+
+from __future__ import absolute_import
+from setuptools import setup
+
+
+def version():
+    with open("VERSION") as f:
+        return f.read()
+
+
+setup(
+    name="cggs",
+    version=version(),
+    description="Crowd-Gerrit Group Sync",
+    author="Open Networking Foundation",
+    author_email="support@opennetworking.org",
+    license="Apache v2",
+    classifiers=[
+        "License :: OSI Approved :: Apache Software License",
+        "Programming Language :: Python :: 3.7",
+    ],
+)