-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·21 lines (19 loc) · 901 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
import os, io
from oneprint import __version__
here = os.path.abspath(os.path.dirname(__file__))
README = io.open(os.path.join(here, 'README.md'), encoding='UTF-8').read()
CHANGES = io.open(os.path.join(here, 'CHANGES.md'), encoding='UTF-8').read()
setup(name="oneprint",
version=__version__,
keywords=['oneprint', 'print', 'xprint', 'escpos'],
description="oneprint is a uniform print library. It use XML to define print data. Now it can convert XML to ESC/POS data or Pillow Image object.",
long_description=README + '\n\n\n' + CHANGES,
long_description_content_type="text/markdown",
url='https://github.com/sintrb/oneprint/',
author="trb",
author_email="sintrb@gmail.com",
packages=['oneprint'],
# install_requires=['requests', 'qrcode', 'pillow', 'pystrich', 'python-escpos'],
zip_safe=False
)