1
1
mirror of https://github.com/eblot/pybootd.git synced 2024-08-17 18:00:33 +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 *.egg-info
*.pyc *.pyc
*.pyo *.pyo
MANIFEST
**/*-local.ini **/*-local.ini
dist/ dist/
build/ build/

View File

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