diff options
author | Thomas Haller <thaller@redhat.com> | 2015-01-05 11:12:25 (GMT) |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2015-01-12 13:17:38 (GMT) |
commit | c7ae0c7d67d376bb8a3fbbe8e35a25de7e4c8ebd (patch) | |
tree | a13c35e239dc811f6a77c4d19939ca96406f4fdd | |
parent | b56f88c9b3c22466fabeb1d751666bc4f79d347c (diff) | |
download | libnl-c7ae0c7d67d376bb8a3fbbe8e35a25de7e4c8ebd.zip libnl-c7ae0c7d67d376bb8a3fbbe8e35a25de7e4c8ebd.tar.gz libnl-c7ae0c7d67d376bb8a3fbbe8e35a25de7e4c8ebd.tar.bz2 |
python: fix package meta data in setup.py
http://lists.infradead.org/pipermail/libnl/2015-January/001802.html
Acked-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: Thomas Haller <thaller@redhat.com>
-rw-r--r-- | python/setup.py.in | 4 |
1 files changed, 4 insertions, 0 deletions
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', |