X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvpp-api%2Fpython%2Fsetup.py;h=05c26bb05e5d280d8460b30ffcab078065b0f092;hb=ee6b0e2904ee5123198ffe26a7de3019e16332b2;hp=a719d10df280d9bfdb1285f1e42edffec229052b;hpb=45d5c87d86d8ac5268e08f743eb032f5a66a82f8;p=vpp.git diff --git a/src/vpp-api/python/setup.py b/src/vpp-api/python/setup.py index a719d10df28..05c26bb05e5 100644 --- a/src/vpp-api/python/setup.py +++ b/src/vpp-api/python/setup.py @@ -11,23 +11,25 @@ # 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 try: from setuptools import setup, find_packages except ImportError: from distutils.core import setup, find_packages -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', - # 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'] + +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)