From: Thomas Haller Date: Mon, 5 Jan 2015 11:12:25 +0000 (+0100) Subject: python: fix package meta data in setup.py X-Git-Tag: libnl3_2_26rc1~18 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c7ae0c7d67d376bb8a3fbbe8e35a25de7e4c8ebd;p=thirdparty%2Flibnl.git python: fix package meta data in setup.py http://lists.infradead.org/pipermail/libnl/2015-January/001802.html Acked-by: Thomas Graf Signed-off-by: Thomas Haller --- diff --git a/python/setup.py.in b/python/setup.py.in index 346c770..0cd35d0 100644 --- a/python/setup.py.in +++ b/python/setup.py.in @@ -35,6 +35,10 @@ setup(name = 'netlink', description = 'Python wrapper for netlink protocols', author = 'Thomas Graf', author_email = 'tgraf@suug.ch', + url = 'http://www.infradead.org/~tgr/libnl/', + license = 'LGPL 2', + platforms = 'linux2', + long_description = 'Experimental python bindings for libnl', ext_modules = [netlink_capi, route_capi, genl_capi], package_dir = {'': '@srcdir@'}, packages = ['netlink', 'netlink.genl', 'netlink.route',