Feature 10296 Pip Standardization

Creates standard template for tox.ini
Introduces 'safety' for listing upstream CVEs
Pins all versions of all upstream modules
Removes Makefile step and places all build logic into tox.ini

Change-Id: I96b0007f918930e61e54edda4b43a4aba90d26d9
Feature: 10296
Signed-off-by: beierlm <mark.beierl@canonical.com>
diff --git a/setup.py b/setup.py
index 31e2588..a2273ad 100644
--- a/setup.py
+++ b/setup.py
@@ -25,11 +25,11 @@
 
 _name = 'osm_policy_module'
 _version_command = ('git describe --match v* --tags --long --dirty', 'pep440-git-full')
-_author = "Benjamín Díaz"
-_author_email = 'bdiaz@whitestack.com'
+_author = "OSM Support"
+_author_email = 'osmsupport@etsi.org'
 _description = 'OSM Policy Module'
-_maintainer = 'Benjamín Díaz'
-_maintainer_email = 'bdiaz@whitestack.com'
+_maintainer = 'OSM Support'
+_maintainer_email = 'osmsupport@etsi.org'
 _license = 'Apache 2.0'
 _url = 'https://osm.etsi.org/gitweb/?p=osm/MON.git;a=tree'
 
@@ -47,24 +47,12 @@
     packages=[_name],
     package_dir={_name: _name},
     include_package_data=True,
-    install_requires=[
-        "aiokafka==0.6.0",
-        "peewee==3.8.*",
-        "jsonschema==2.6.*",
-        "pyyaml==3.*",
-        "pymysql",
-        "peewee-migrate==1.1.*",
-        "requests==2.*",
-        "osm-common",
-    ],
+
     entry_points={
         "console_scripts": [
             "osm-policy-agent = osm_policy_module.cmd.policy_module_agent:main",
             "osm-pol-healthcheck = osm_policy_module.cmd.policy_module_healthcheck:main",
         ]
     },
-    dependency_links=[
-        'git+https://osm.etsi.org/gerrit/osm/common.git#egg=osm-common'
-    ],
     setup_requires=['setuptools-version-command']
 )