blob: 09c921ea77da0a6043f151e7d0a29cfa5ed57a51 [file] [log] [blame]
tierno72774862020-05-04 11:44:15 +00001#!/usr/bin/env python3
2# -*- coding: utf-8 -*-
3
4##
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14# implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17##
18
19from setuptools import setup
20
21_name = "osm_ro_plugin"
22
23README = """
24===========
25osm-ro_plugin
26===========
27
28osm-ro plugin is the base class for RO VIM and SDN plugins
29"""
30
31setup(
32 name=_name,
sousaedu2ad85172021-02-17 15:05:18 +010033 description="OSM ro base class for vim and SDN plugins",
tierno72774862020-05-04 11:44:15 +000034 long_description=README,
sousaedu2ad85172021-02-17 15:05:18 +010035 version_command=(
36 "git describe --match v* --tags --long --dirty",
37 "pep440-git-full",
38 ),
tierno72774862020-05-04 11:44:15 +000039 # version=VERSION,
40 # python_requires='>3.5.0',
sousaedu2ad85172021-02-17 15:05:18 +010041 author="ETSI OSM",
42 author_email="alfonso.tiernosepulveda@telefonica.com",
43 maintainer="Alfonso Tierno",
44 maintainer_email="alfonso.tiernosepulveda@telefonica.com",
45 url="https://osm.etsi.org/gitweb/?p=osm/RO.git;a=summary",
46 license="Apache 2.0",
tierno72774862020-05-04 11:44:15 +000047 packages=[_name],
48 include_package_data=True,
49 install_requires=[
sousaedu2ad85172021-02-17 15:05:18 +010050 "requests",
51 "paramiko",
52 "PyYAML",
tierno72774862020-05-04 11:44:15 +000053 ],
sousaedu2ad85172021-02-17 15:05:18 +010054 setup_requires=["setuptools-version-command"],
tierno72774862020-05-04 11:44:15 +000055 entry_points={
sousaedu2ad85172021-02-17 15:05:18 +010056 "osm_ro.plugins": [
57 "rovim_plugin = osm_ro_plugin.vimconn:VimConnector",
58 "rosdn_plugin = osm_ro_plugin.sdnconn:SdnConnectorBase",
59 ],
tierno72774862020-05-04 11:44:15 +000060 },
61)