PCKG fix setup.py and improve Manifest
This commit is contained in:
parent
f676782130
commit
e49c35abc1
8
MANIFEST
8
MANIFEST
|
@ -1,8 +0,0 @@
|
||||||
# file GENERATED by distutils, do NOT edit
|
|
||||||
README
|
|
||||||
setup.py
|
|
||||||
escpos/__init__.py
|
|
||||||
escpos/constants.py
|
|
||||||
escpos/escpos.py
|
|
||||||
escpos/exceptions.py
|
|
||||||
escpos/printer.py
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
include *.rst
|
||||||
|
include *.txt
|
||||||
|
include COPYING
|
||||||
|
include INSTALL
|
||||||
|
include tox.ini
|
||||||
|
recursive-include doc *.bat
|
||||||
|
recursive-include doc *.ico
|
||||||
|
recursive-include doc *.py
|
||||||
|
recursive-include doc *.rst
|
||||||
|
recursive-include doc *.txt
|
||||||
|
recursive-include doc Makefile
|
|
@ -1 +1 @@
|
||||||
_build
|
_build/
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -44,7 +44,7 @@ setup(
|
||||||
download_url='https://github.com/python-escpos/python-escpos/archive/master.zip',
|
download_url='https://github.com/python-escpos/python-escpos/archive/master.zip',
|
||||||
description='Python library to manipulate ESC/POS Printers',
|
description='Python library to manipulate ESC/POS Printers',
|
||||||
license='GNU GPL v3',
|
license='GNU GPL v3',
|
||||||
long_description=read('README'),
|
long_description=read('README.rst'),
|
||||||
author='Manuel F Martinez',
|
author='Manuel F Martinez',
|
||||||
author_email='manpaz@bashlinux.com',
|
author_email='manpaz@bashlinux.com',
|
||||||
platforms=['linux'],
|
platforms=['linux'],
|
||||||
|
|
Loading…
Reference in New Issue