-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (27 loc) · 782 Bytes
/
setup.py
File metadata and controls
executable file
·31 lines (27 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='escposprinter',
version='6.2',
url='https://github.com/Simonefardella/escposprinter',
download_url='https://github.com/Simonefardella/escposprinter/archive/master.zip',
description='Python library to manipulate ESC/POS Printers with support for python >= 3',
long_description=open('README').read(),
license='LGPL',
author=['Simone Fardella'],
author_email='fardella93@gmail.com',
platforms=['linux'],
packages=[
'escposprinter',
],
package_data = {'escposprinter':['nc.exe']},
install_requires=[
'pyusb',
'Pillow>=2.0',
'qrcode>=4.0',
'pyserial',
],
)