blob: 96e6b627acccbd3af991884eebe443d374c3d714 [file] [log] [blame]
tiernoed3e4d42019-10-21 15:31:27 +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_rosdn_onosof"
22
23README = """
24===========
25osm-rosdn_onosof
26===========
27
tierno4126d052019-12-11 15:30:44 +000028osm-ro plugin for onos SDN using pre-computed openflow rules
tiernoed3e4d42019-10-21 15:31:27 +000029"""
30
31setup(
32 name=_name,
tierno4126d052019-12-11 15:30:44 +000033 description='OSM RO plugin for SDN with onos openflow rules',
tiernoed3e4d42019-10-21 15:31:27 +000034 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',
39 author_email='alfonso.tiernosepulveda@telefonica.com',
40 maintainer='Alfonso Tierno',
41 maintainer_email='alfonso.tiernosepulveda@telefonica.com',
42 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,
tierno23460952020-01-28 16:31:10 +000047 install_requires=[
48 "requests",
49 "osm-ro @ git+https://osm.etsi.org/gerrit/osm/RO.git#egg=osm-ro&subdirectory=RO"
50 ],
tiernoed3e4d42019-10-21 15:31:27 +000051 setup_requires=['setuptools-version-command'],
52 entry_points={
53 'osm_rosdn.plugins': ['rosdn_onosof = osm_rosdn_onosof.sdnconn_onosof:SdnConnectorOnosOf'],
54 },
55)