Initial commit of Crowd Gerrit Group Sync

Change-Id: I9614ed63baf9ac0f4166ae730a017854522922e7
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..6c05bec
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,21 @@
+; SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
+; SPDX-License-Identifier: Apache-2.0
+
+[tox]
+envlist = py37
+skip_missing_interpreters = true
+
+[testenv]
+deps =
+  reuse
+  flake8
+  pylint
+  coverage
+
+commands=
+#  reuse
+  flake8 cggs.py
+  pylint --py3k cggs.py
+
+[flake8]
+max-line-length = 119