VPP-959: Python API require minimum CFFI version.
[vpp.git] / src / vpp-api / python / setup.py
index 28c2ecc..626ddde 100644 (file)
@@ -22,8 +22,11 @@ setup (name = 'vpp_papi',
        description = 'VPP Python binding',
        author = 'Ole Troan',
        author_email = 'ot@cisco.com',
+       url = 'https://wiki.fd.io/view/VPP/Python_API',
+       python_requires='>=2.7, >=3.3',
+       license = 'Apache-2.0',
        test_suite = 'tests',
-       install_requires=['cffi'],
+       install_requires=['cffi >= 1.10'],
        py_modules=['vpp_papi'],
        long_description = '''VPP Python language binding.''',
        zip_safe = True,