1
1
mirror of https://github.com/eblot/pybootd.git synced 2024-07-15 01:30:24 +03:00

Fix package generation

This commit is contained in:
Emmanuel Blot 2019-09-06 18:44:11 +02:00
parent 1ba2f7d609
commit 9992ae524b
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,6 +1,7 @@
*.egg-info
*.pyc
*.pyo
MANIFEST
**/*-local.ini
dist/
build/

View File

@ -20,7 +20,7 @@
from distutils.core import setup
from os.path import dirname, join as joinpath
from sys import platform
from pybootd import __version__
def _read(fname):
return open(joinpath(dirname(__file__), fname)).read()
@ -33,7 +33,7 @@ if platform == 'darwin':
setup(
name='pybootd',
version='1.6.0',
version=__version__,
description='Simplified BOOTP/DHCP/PXE and TFTP server',
author='Emmanuel Blot',
author_email='emmanuel.blot@free.fr',