blob: c27bca3ddfd143cea332be55aade9b0b7c430fd4 [file] [log] [blame]
tierno7d782ef2019-10-04 12:56:31 +00001#!/usr/bin/env python3
2# -*- coding: utf-8 -*-
3
4##
5# Copyright 2017 Telefonica Digital Spain S.L.U.
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
15# implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18##
19
20from setuptools import setup
21
22_name = "osm_rovim_opennebula"
23
24README = """
25===========
26osm-rovim_opennebula
27===========
28
29osm-ro pluging for opennebula VIM
30"""
31
32setup(
33 name=_name,
34 description='OSM ro vim plugin for opennebula',
35 long_description=README,
36 version_command=('git describe --match v* --tags --long --dirty', 'pep440-git-full'),
37 # version=VERSION,
38 # python_requires='>3.5.0',
39 author='ETSI OSM',
40 # TODO py3 author_email='',
41 maintainer='OSM_TECH@LIST.ETSI.ORG', # TODO py3
42 # TODO py3 maintainer_email='',
43 url='https://osm.etsi.org/gitweb/?p=osm/RO.git;a=summary',
44 license='Apache 2.0',
45
46 packages=[_name],
47 include_package_data=True,
48 dependency_links=["git+https://osm.etsi.org/gerrit/osm/RO.git#egg=osm-ro"],
49 install_requires=["requests", "netaddr", "PyYAML", "osm-ro",],
50 setup_requires=['setuptools-version-command'],
51 entry_points={
52 'osm_rovim.plugins': ['rovim_opennebula = osm_rovim_opennebula.vimconn_opennebula'],
53 },
54)