forked from twam/pyzpl2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·35 lines (32 loc) · 988 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
31
32
33
34
35
# coding=utf-8
from setuptools import setup, find_packages
from codecs import open
setup(
name='pyzpl2',
version='0.1',
description='ZPL II',
long_description=open('README.rst', encoding='utf-8').read(),
url='https://github.com/twam/pyzpl2',
author='Tobias Müller',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3.5',
'Topic :: Printing'
],
keywords='zebra zpl zpl2 zplII label',
packages=find_packages(),
install_requires=[''],
extras_require={
'dev': ['check-manifest'],
'test': ['coverage'],
},
platforms='any',
)