blob: 784013fc606527c3866aa0a72aea6ef5a6c1f1b2 [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 -080014
Ole Troan5f9dcff2016-08-01 04:59:13 +020015try:
Ole Troana7564e82018-06-12 21:06:44 +020016 from setuptools import setup, find_packages
Ole Troan5f9dcff2016-08-01 04:59:13 +020017except ImportError:
Ole Troana7564e82018-06-12 21:06:44 +020018 from distutils.core import setup, find_packages
Ole Troan6855f6c2016-04-09 03:16:30 +020019
Ole Troan041372b2021-05-04 12:45:57 +020020requirements = []
Paul Vinciguerra2d7b0902019-06-06 07:38:42 -040021
Paul Vinciguerra49ff6d12019-02-25 18:55:28 -080022setup(
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020023 name="vpp_papi",
Ole Troanac0babd2024-01-23 18:56:23 +010024 version="2.1.0",
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020025 description="VPP Python binding",
26 author="Ole Troan",
27 author_email="ot@cisco.com",
28 url="https://wiki.fd.io/view/VPP/Python_API",
29 license="Apache-2.0",
30 test_suite="vpp_papi.tests",
Paul Vinciguerra2d7b0902019-06-06 07:38:42 -040031 install_requires=requirements,
Paul Vinciguerra49ff6d12019-02-25 18:55:28 -080032 packages=find_packages(),
Ole Troanac0babd2024-01-23 18:56:23 +010033 package_data={"vpp_papi": ["data/*.json"]},
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020034 long_description="""VPP Python language binding.""",
35 zip_safe=True,
36)