blob: 05c26bb05e5d280d8460b30ffcab078065b0f092 [file] [log] [blame]
Ole Troan57c3d662016-09-12 22:00:32 +02001#
2# Copyright (c) 2016 Cisco and/or its affiliates.
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at:
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
Paul Vinciguerra49ff6d12019-02-25 18:55:28 -080014import sys
15
Ole Troan5f9dcff2016-08-01 04:59:13 +020016try:
Ole Troana7564e82018-06-12 21:06:44 +020017 from setuptools import setup, find_packages
Ole Troan5f9dcff2016-08-01 04:59:13 +020018except ImportError:
Ole Troana7564e82018-06-12 21:06:44 +020019 from distutils.core import setup, find_packages
Ole Troan6855f6c2016-04-09 03:16:30 +020020
Paul Vinciguerra2d7b0902019-06-06 07:38:42 -040021requirements = ['cffi >= 1.6']
Paul Vinciguerra2d7b0902019-06-06 07:38:42 -040022
Paul Vinciguerra49ff6d12019-02-25 18:55:28 -080023setup(
24 name='vpp_papi',
25 version='1.6.2',
26 description='VPP Python binding',
27 author='Ole Troan',
28 author_email='ot@cisco.com',
29 url='https://wiki.fd.io/view/VPP/Python_API',
30 license='Apache-2.0',
31 test_suite='vpp_papi.tests',
Paul Vinciguerra2d7b0902019-06-06 07:38:42 -040032 install_requires=requirements,
Paul Vinciguerra49ff6d12019-02-25 18:55:28 -080033 packages=find_packages(),
34 long_description='''VPP Python language binding.''',
35 zip_safe=True)