1
1
mirror of https://github.com/eblot/pybootd.git synced 2024-10-27 00:51:54 +03:00

Bump up version and update AUTHORS

This commit is contained in:
Emmanuel Blot 2016-10-05 12:17:53 +02:00
parent a3550d4bb9
commit 84027667f2
2 changed files with 9 additions and 5 deletions

View File

@ -5,6 +5,10 @@ Main developers:
Contributors:
* David Decotigny
* Alessandro Pilotti
* Skrubly
Main references and prior work:
This work has been initially forked from Milo's MediaMVP project:
http://www.milosoftware.com/mvp/

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2010-2011 Emmanuel Blot <emmanuel.blot@free.fr>
# Copyright (c) 2010-2016 Emmanuel Blot <emmanuel.blot@free.fr>
# Copyright (c) 2010-2011 Neotion
#
# This library is free software; you can redistribute it and/or
@ -25,18 +25,18 @@ def _read(fname):
import os
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='pybootd',
version='1.5.0',
version='1.6.0',
description='Simplified BOOTP/DHCP/PXE and TFTP server',
author='Emmanuel Blot',
author_email='emmanuel.blot@free.fr',
license='LGPL v2',
keywords = 'bootp ftdp dhcp pxe netboot',
keywords='bootp ftdp dhcp pxe netboot',
url='http://github.com/eblot/pybootd',
download_url='https://github.com/eblot/pybootd/tarball/master',
packages=['pybootd'],
# requires=['netifaces (>= 0.5)'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: No Input/Output (Daemon)',
@ -53,7 +53,7 @@ setup(
'Topic :: System :: Networking',
'Topic :: Utilities'
],
package_data = {
package_data={
'': ['etc/*.ini', 'etc/*.cfg'],
},
long_description=_read('README.rst'),