| Benjamin Diaz | be20773 | 2019-11-29 08:26:30 -0300 | [diff] [blame] | 1 | #!/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 | |
| 19 | from setuptools import setup |
| 20 | |
| 21 | _name = "osm_rosdn_onos_vpls" |
| 22 | |
| 23 | README = """ |
| 24 | =========== |
| Benjamin Diaz | 949e053 | 2019-12-09 20:12:42 -0300 | [diff] [blame] | 25 | osm-rosdn_onos_vpls |
| Benjamin Diaz | be20773 | 2019-11-29 08:26:30 -0300 | [diff] [blame] | 26 | =========== |
| 27 | |
| 28 | osm-ro pluging for ONOS VPLS SDN |
| 29 | """ |
| 30 | |
| 31 | setup( |
| 32 | name=_name, |
| 33 | description='OSM ro sdn plugin for ONOS VPLS', |
| 34 | 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 | # TODO py3 author_email='', |
| 40 | maintainer='OSM_TECH@LIST.ETSI.ORG', # TODO py3 |
| 41 | # TODO py3 maintainer_email='', |
| 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, |
| tierno | 2346095 | 2020-01-28 16:31:10 +0000 | [diff] [blame] | 47 | install_requires=[ |
| 48 | "requests", |
| 49 | "osm-ro @ git+https://osm.etsi.org/gerrit/osm/RO.git#egg=osm-ro&subdirectory=RO" |
| 50 | ], |
| Benjamin Diaz | be20773 | 2019-11-29 08:26:30 -0300 | [diff] [blame] | 51 | setup_requires=['setuptools-version-command'], |
| 52 | entry_points={ |
| Benjamin Diaz | 949e053 | 2019-12-09 20:12:42 -0300 | [diff] [blame] | 53 | 'osm_rosdn.plugins': ['rosdn_onos_vpls = osm_rosdn_onos_vpls.sdn_assist_onos_vpls:OnosVpls'], |
| Benjamin Diaz | be20773 | 2019-11-29 08:26:30 -0300 | [diff] [blame] | 54 | }, |
| 55 | ) |