blob: ef11dca7574fa2ebc125e854209a80242b565181 [file] [log] [blame]
tierno7d782ef2019-10-04 12:56:31 +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_rovim_fos"
22
23README = """
24===========
25osm-rovim_fos
26===========
27
baldoni07df0d22020-06-12 15:24:24 +020028osm-ro pluging for Eclipse fog05 VIM
tierno7d782ef2019-10-04 12:56:31 +000029"""
30
31setup(
32 name=_name,
sousaedu2ad85172021-02-17 15:05:18 +010033 description="OSM ro vim plugin for Eclipse fog05",
tierno7d782ef2019-10-04 12:56:31 +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 ),
tierno7d782ef2019-10-04 12:56:31 +000039 # version=VERSION,
sousaedu2ad85172021-02-17 15:05:18 +010040 # python_requires=">3.5.0",
41 author="ETSI OSM",
42 author_email="OSM_TECH@LIST.ETSI.ORG",
43 maintainer="ETSI OSM",
44 maintainer_email="OSM_TECH@LIST.ETSI.ORG",
45 url="https://osm.etsi.org/gitweb/?p=osm/RO.git;a=summary",
46 license="Apache 2.0",
tierno7d782ef2019-10-04 12:56:31 +000047 packages=[_name],
48 include_package_data=True,
tierno7d782ef2019-10-04 12:56:31 +000049 install_requires=[
tierno23460952020-01-28 16:31:10 +000050 "requests",
51 "netaddr",
52 "PyYAML",
baldoni07df0d22020-06-12 15:24:24 +020053 "zenoh==0.3.0",
54 "yaks==0.3.0.post1",
55 "fog05-sdk==0.2.0",
56 "fog05==0.2.0",
57 "pyangbind",
58 "sphinx",
sousaedu2ad85172021-02-17 15:05:18 +010059 "osm-ro-plugin @ git+https://osm.etsi.org/gerrit/osm/RO.git#egg=osm-ro-plugin&subdirectory=RO-plugin",
tierno7d782ef2019-10-04 12:56:31 +000060 ],
sousaedu2ad85172021-02-17 15:05:18 +010061 setup_requires=["setuptools-version-command"],
tierno7d782ef2019-10-04 12:56:31 +000062 entry_points={
sousaedu2ad85172021-02-17 15:05:18 +010063 "osm_rovim.plugins": ["rovim_fos = osm_rovim_fos.vimconn_fos:vimconnector"],
tierno7d782ef2019-10-04 12:56:31 +000064 },
65)