forked from mmulqueen/pyStrich
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 993 Bytes
/
setup.py
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
from setuptools import setup, find_packages
setup(
name='pyStrich',
version='0.8',
packages=['pystrich',
'pystrich.ean13',
'pystrich.qrcode',
'pystrich.code39',
'pystrich.code128',
'pystrich.datamatrix',
'pystrich.fonts'],
package_data={
'pystrich.fonts': ['*.pil', '*.pbm'],
'pystrich.qrcode': ['qrcode_data/*.dat']
},
install_requires = ['Pillow'],
url='http://method-b.uk/pystrich/',
license='Apache 2.0',
author='Michael Mulqueen',
author_email='[email protected]',
description='PyStrich is a Python module to generate 1D and 2D barcodes (Code 39, Code 128, DataMatrix, QRCode and '
'EAN13). Forked from huBarcode.',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Graphics",
"Topic :: Office/Business"
]
)