blob: 09647c384e56211629e77d4d555f799e6a4b66fb [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"
sousaedu96abfc22021-02-18 14:57:01 +010022_version_command = ("git describe --match v* --tags --long --dirty", "pep440-git-full")
23_description = "OSM ro sdn plugin for arista with CloudVision"
24_author = "OSM Support"
25_author_email = "osmsupport@etsi.org"
26_maintainer = "OSM Support"
27_maintainer_email = "osmsupport@etsi.org"
28_license = "Apache 2.0"
29_url = "https://osm.etsi.org/gitweb/?p=osm/RO.git;a=summary"
perales9c701472020-01-17 15:55:13 +010030
sousaedu96abfc22021-02-18 14:57:01 +010031_readme = """
perales9c701472020-01-17 15:55:13 +010032===========
tierno667d1582019-12-20 12:16:46 +000033osm-rosdn_arista_cloudvision
perales9c701472020-01-17 15:55:13 +010034===========
35
tierno667d1582019-12-20 12:16:46 +000036osm-ro pluging for arista_cloudvision SDN
perales9c701472020-01-17 15:55:13 +010037"""
38
39setup(
40 name=_name,
sousaedu96abfc22021-02-18 14:57:01 +010041 description=_description,
42 long_description=_readme,
43 version_command=_version_command,
44 author=_author,
45 author_email=_author_email,
46 maintainer=_maintainer,
47 maintainer_email=_maintainer_email,
48 url=_url,
49 license=_license,
perales9c701472020-01-17 15:55:13 +010050 packages=[_name],
51 include_package_data=True,
sousaedu80135b92021-02-17 15:05:18 +010052 setup_requires=["setuptools-version-command"],
perales9c701472020-01-17 15:55:13 +010053 entry_points={
sousaedu80135b92021-02-17 15:05:18 +010054 "osm_rosdn.plugins": [
55 "rosdn_arista_cloudvision = osm_rosdn_arista_cloudvision.wimconn_arista:AristaSdnConnector"
56 ]
perales9c701472020-01-17 15:55:13 +010057 },
58)