blob: 33bd29fdc30a3dcee67bedc55676394f4fbf2b22 [file] [log] [blame]
perales9c701472020-01-17 15:55:13 +01001#!/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
tierno667d1582019-12-20 12:16:46 +000021_name = "osm_rosdn_arista_cloudvision"
perales9c701472020-01-17 15:55:13 +010022
23README = """
24===========
tierno667d1582019-12-20 12:16:46 +000025osm-rosdn_arista_cloudvision
perales9c701472020-01-17 15:55:13 +010026===========
27
tierno667d1582019-12-20 12:16:46 +000028osm-ro pluging for arista_cloudvision SDN
perales9c701472020-01-17 15:55:13 +010029"""
30
31setup(
32 name=_name,
tierno667d1582019-12-20 12:16:46 +000033 description='OSM ro sdn plugin for arista with CloudVision',
perales9c701472020-01-17 15:55:13 +010034 long_description=README,
35 version_command=('git describe --match v* --tags --long --dirty', 'pep440-git-full'),
36 # version=VERSION,
37 # python_requires='>3.5.0',
38 author='ETSI OSM',
tierno72774862020-05-04 11:44:15 +000039 author_email='OSM_TECH@LIST.ETSI.ORG',
40 maintainer='Oscar Luis Peral',
41 maintainer_email='oscarluis.peral@atos.net',
perales9c701472020-01-17 15:55:13 +010042 url='https://osm.etsi.org/gitweb/?p=osm/RO.git;a=summary',
43 license='Apache 2.0',
44
45 packages=[_name],
46 include_package_data=True,
tierno72774862020-05-04 11:44:15 +000047 install_requires=[
48 "requests",
49 "uuid",
50 "cvprac",
51 "osm-ro-plugin @ git+https://osm.etsi.org/gerrit/osm/RO.git#egg=osm-ro-plugin&subdirectory=RO-plugin"
52 ],
perales9c701472020-01-17 15:55:13 +010053 setup_requires=['setuptools-version-command'],
54 entry_points={
tierno667d1582019-12-20 12:16:46 +000055 'osm_rosdn.plugins': ['rosdn_arista_cloudvision = osm_rosdn_arista_cloudvision.'
56 'wimconn_arista:AristaSdnConnector']
perales9c701472020-01-17 15:55:13 +010057 },
58)