X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvpp-api%2Fpython%2Fsetup.py;h=a14e4e4d113ebcd010ba2fe18e3950ad91ae8579;hb=dfd980fcffacc2bed90e53b9da669eac53025bb2;hp=d97e35fa98fbf3277cbb70938cb9fc36b5f58b81;hpb=a7564e8004fd6d9a63eb0605f752f27a71403645;p=vpp.git diff --git a/src/vpp-api/python/setup.py b/src/vpp-api/python/setup.py index d97e35fa98f..a14e4e4d113 100644 --- a/src/vpp-api/python/setup.py +++ b/src/vpp-api/python/setup.py @@ -11,23 +11,32 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. +import sys + +stdlib_enum = sys.version_info >= (3, 6) +stdlib_ipaddress = sys.version_info >= (3, 3) try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages -setup(name='vpp_papi', - version='1.5', - description='VPP Python binding', - author='Ole Troan', - author_email='ot@cisco.com', - url='https://wiki.fd.io/view/VPP/Python_API', - license='Apache-2.0', - test_suite='tests', - # Add when we don't need to support 2.7.5 - # 'enum34;python_version<"3.4"'], - install_requires=['cffi >= 1.6', 'enum34'], - packages=find_packages(), - long_description='''VPP Python language binding.''', - zip_safe=True) +requirements = ['cffi >= 1.6'] +if not stdlib_enum: + requirements.append('aenum') +if not stdlib_ipaddress: + requirements.append('ipaddress') + +setup( + name='vpp_papi', + version='1.6.2', + description='VPP Python binding', + author='Ole Troan', + author_email='ot@cisco.com', + url='https://wiki.fd.io/view/VPP/Python_API', + license='Apache-2.0', + test_suite='vpp_papi.tests', + install_requires=requirements, + packages=find_packages(), + long_description='''VPP Python language binding.''', + zip_safe=True)