-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed setup.py sdist to include the readme as long description
- Loading branch information
1 parent
a484d97
commit 213b54d
Showing
1 changed file
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,15 +38,18 @@ def finalize_options(self): | |
def run(self): | ||
discover_and_run_tests() | ||
|
||
with open('README.rst') as readme_file: | ||
readme = readme_file.read() | ||
|
||
setup( | ||
name='isc_dhcp_leases', | ||
version='0.5.0', | ||
version='0.5.1', | ||
packages=['isc_dhcp_leases'], | ||
url='https://github.com/MartijnBraam/python-isc-dhcp-leases', | ||
license='MIT', | ||
author='Martijn Braam', | ||
author_email='[email protected]', | ||
description='Small python module for reading /var/lib/dhcp/dhcpd.leases from isc-dhcp-server', | ||
long_description=readme, | ||
cmdclass={'test': DiscoverTest}, | ||
) |