blob: a2273ad2ac9c99d403cbcd6e189339a728c8eed2 [file] [log] [blame]
Benjamin Diaz7f11ecf2018-09-14 12:03:38 -03001# -*- 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##
24from setuptools import setup
25
26_name = 'osm_policy_module'
Benjamin Diaz28ea12d2018-10-09 15:56:22 -030027_version_command = ('git describe --match v* --tags --long --dirty', 'pep440-git-full')
beierlmddaf8882021-02-11 16:32:17 -050028_author = "OSM Support"
29_author_email = 'osmsupport@etsi.org'
Benjamin Diaz7f11ecf2018-09-14 12:03:38 -030030_description = 'OSM Policy Module'
beierlmddaf8882021-02-11 16:32:17 -050031_maintainer = 'OSM Support'
32_maintainer_email = 'osmsupport@etsi.org'
Benjamin Diaz7f11ecf2018-09-14 12:03:38 -030033_license = 'Apache 2.0'
34_url = 'https://osm.etsi.org/gitweb/?p=osm/MON.git;a=tree'
35
36setup(
37 name=_name,
38 version_command=_version_command,
39 description=_description,
Benjamin Diaz4009bf32019-04-26 16:35:32 -030040 long_description=open('README.rst', encoding='utf-8').read(),
Benjamin Diaz7f11ecf2018-09-14 12:03:38 -030041 author=_author,
42 author_email=_author_email,
43 maintainer=_maintainer,
44 maintainer_email=_maintainer_email,
45 url=_url,
46 license=_license,
Benjamin Diazbd499e02018-09-20 14:12:52 -030047 packages=[_name],
Benjamin Diaza14cf162019-02-01 13:31:47 -030048 package_dir={_name: _name},
Benjamin Diaz7f11ecf2018-09-14 12:03:38 -030049 include_package_data=True,
beierlmddaf8882021-02-11 16:32:17 -050050
Benjamin Diaz7f11ecf2018-09-14 12:03:38 -030051 entry_points={
52 "console_scripts": [
53 "osm-policy-agent = osm_policy_module.cmd.policy_module_agent:main",
Benjamin Diazbaaf8762019-05-31 11:47:34 -030054 "osm-pol-healthcheck = osm_policy_module.cmd.policy_module_healthcheck:main",
Benjamin Diaz7f11ecf2018-09-14 12:03:38 -030055 ]
56 },
Benjamin Diaz7f11ecf2018-09-14 12:03:38 -030057 setup_requires=['setuptools-version-command']
58)