Skip to content

Commit

Permalink
Changed setup.py sdist to include the readme as long description
Browse files Browse the repository at this point in the history
  • Loading branch information
MartijnBraam committed Sep 11, 2015
1 parent a484d97 commit 213b54d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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},
)

0 comments on commit 213b54d

Please sign in to comment.