blob: 18637ba21b7927fb8abd979e6e3cea63326e882c [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
Ole Troan041372b2021-05-04 12:45:57 +020021requirements = []
Paul Vinciguerra2d7b0902019-06-06 07:38:42 -040022
Paul Vinciguerra49ff6d12019-02-25 18:55:28 -080023setup(
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020024 name="vpp_papi",
25 version="2.0.0",
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(),
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020034 long_description="""VPP Python language binding.""",
35 zip_safe=True,
36)