| Benjamin Diaz | 7f11ecf | 2018-09-14 12:03:38 -0300 | [diff] [blame] | 1 | # -*- coding: utf-8 -*- |
| 2 | |
| 3 | # Copyright 2018 Whitestack, LLC |
| 4 | # ************************************************************* |
| 5 | |
| 6 | # This file is part of OSM Monitoring module |
| 7 | # All Rights Reserved to Whitestack, LLC |
| 8 | |
| 9 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 10 | # not use this file except in compliance with the License. You may obtain |
| 11 | # a copy of the License at |
| 12 | |
| 13 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | |
| 15 | # Unless required by applicable law or agreed to in writing, software |
| 16 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 17 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 18 | # License for the specific language governing permissions and limitations |
| 19 | # under the License. |
| 20 | |
| 21 | # For those usages not covered by the Apache License, Version 2.0 please |
| 22 | # contact: bdiaz@whitestack.com or glavado@whitestack.com |
| 23 | ## |
| 24 | from setuptools import setup |
| 25 | |
| 26 | _name = 'osm_policy_module' |
| Benjamin Diaz | 28ea12d | 2018-10-09 15:56:22 -0300 | [diff] [blame] | 27 | _version_command = ('git describe --match v* --tags --long --dirty', 'pep440-git-full') |
| Benjamin Diaz | 7f11ecf | 2018-09-14 12:03:38 -0300 | [diff] [blame] | 28 | _author = "Benjamín Díaz" |
| 29 | _author_email = 'bdiaz@whitestack.com' |
| 30 | _description = 'OSM Policy Module' |
| 31 | _maintainer = 'Benjamín Díaz' |
| 32 | _maintainer_email = 'bdiaz@whitestack.com' |
| 33 | _license = 'Apache 2.0' |
| 34 | _url = 'https://osm.etsi.org/gitweb/?p=osm/MON.git;a=tree' |
| 35 | |
| 36 | setup( |
| 37 | name=_name, |
| 38 | version_command=_version_command, |
| 39 | description=_description, |
| Benjamin Diaz | 4009bf3 | 2019-04-26 16:35:32 -0300 | [diff] [blame] | 40 | long_description=open('README.rst', encoding='utf-8').read(), |
| Benjamin Diaz | 7f11ecf | 2018-09-14 12:03:38 -0300 | [diff] [blame] | 41 | author=_author, |
| 42 | author_email=_author_email, |
| 43 | maintainer=_maintainer, |
| 44 | maintainer_email=_maintainer_email, |
| 45 | url=_url, |
| 46 | license=_license, |
| Benjamin Diaz | bd499e0 | 2018-09-20 14:12:52 -0300 | [diff] [blame] | 47 | packages=[_name], |
| Benjamin Diaz | a14cf16 | 2019-02-01 13:31:47 -0300 | [diff] [blame] | 48 | package_dir={_name: _name}, |
| Benjamin Diaz | 7f11ecf | 2018-09-14 12:03:38 -0300 | [diff] [blame] | 49 | include_package_data=True, |
| 50 | install_requires=[ |
| bravof | 8ba99ff | 2020-06-15 10:59:04 -0400 | [diff] [blame] | 51 | "aiokafka==0.6.0", |
| Benjamin Diaz | 10be7c9 | 2019-02-05 17:44:42 -0300 | [diff] [blame] | 52 | "peewee==3.8.*", |
| Benjamin Diaz | 7f11ecf | 2018-09-14 12:03:38 -0300 | [diff] [blame] | 53 | "jsonschema==2.6.*", |
| Benjamin Diaz | 7f11ecf | 2018-09-14 12:03:38 -0300 | [diff] [blame] | 54 | "pyyaml==3.*", |
| Benjamin Diaz | a14cf16 | 2019-02-01 13:31:47 -0300 | [diff] [blame] | 55 | "pymysql", |
| Benjamin Diaz | 10be7c9 | 2019-02-05 17:44:42 -0300 | [diff] [blame] | 56 | "peewee-migrate==1.1.*", |
| Benjamin Diaz | f4f13e1 | 2019-04-30 10:20:57 -0300 | [diff] [blame] | 57 | "requests==2.*", |
| Benjamin Diaz | a14cf16 | 2019-02-01 13:31:47 -0300 | [diff] [blame] | 58 | "osm-common", |
| Benjamin Diaz | 7f11ecf | 2018-09-14 12:03:38 -0300 | [diff] [blame] | 59 | ], |
| 60 | entry_points={ |
| 61 | "console_scripts": [ |
| 62 | "osm-policy-agent = osm_policy_module.cmd.policy_module_agent:main", |
| Benjamin Diaz | baaf876 | 2019-05-31 11:47:34 -0300 | [diff] [blame] | 63 | "osm-pol-healthcheck = osm_policy_module.cmd.policy_module_healthcheck:main", |
| Benjamin Diaz | 7f11ecf | 2018-09-14 12:03:38 -0300 | [diff] [blame] | 64 | ] |
| 65 | }, |
| 66 | dependency_links=[ |
| 67 | 'git+https://osm.etsi.org/gerrit/osm/common.git#egg=osm-common' |
| 68 | ], |
| 69 | setup_requires=['setuptools-version-command'] |
| 70 | ) |