|
1 | 1 | #!/usr/bin/python2 |
| 2 | +# -*- coding: utf-8 -*- |
2 | 3 |
|
3 | 4 | from __future__ import print_function |
4 | 5 |
|
@@ -51,13 +52,35 @@ def _str2list(pkgstr, onlystr): |
51 | 52 | libnl = pkgconfig('libnl-3.0') |
52 | 53 | libnl['libs'].append('nl-route-3') |
53 | 54 |
|
54 | | -# don't reformat this line, Makefile parses it |
| 55 | +with open('README.rst') as f: |
| 56 | + long_description = f.read() |
| 57 | + |
55 | 58 | setup(name='ethtool', |
56 | 59 | version=version, |
57 | 60 | description='Python module to interface with ethtool', |
| 61 | + long_description=long_description, |
| 62 | + |
58 | 63 | author='Harald Hoyer, Arnaldo Carvalho de Melo, David Sommerseth', |
59 | 64 | author_email='davids@redhat.com', |
| 65 | + |
| 66 | + maintainer='Lumír Balhar, Miro Hrončok, Charalampos Stratakis, Sanqui', |
| 67 | + maintainer_email='python-maint@redhat.com', |
| 68 | + |
60 | 69 | url='https://github.com/fedora-python/python-ethtool', |
| 70 | + license='GPL-2.0', |
| 71 | + keywords='network networking ethernet tool ethtool', |
| 72 | + |
| 73 | + classifiers=[ |
| 74 | + 'Intended Audience :: Developers', |
| 75 | + 'Intended Audience :: System Administrators', |
| 76 | + 'Operating System :: POSIX :: Linux', |
| 77 | + 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)', |
| 78 | + 'Programming Language :: Python', |
| 79 | + 'Programming Language :: Python :: 2', |
| 80 | + 'Programming Language :: Python :: 2.7', |
| 81 | + 'Topic :: Software Development :: Libraries', |
| 82 | + 'Topic :: System :: Networking', |
| 83 | + ], |
61 | 84 | ext_modules=[ |
62 | 85 | Extension( |
63 | 86 | 'ethtool', |
|
0 commit comments