-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
38 lines (35 loc) · 1.28 KB
/
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
36
37
38
#!/usr/bin/python
# from distutils.core import setup
from setuptools import setup, find_packages
import zplconvert
setup(name='zplconvert',
packages=find_packages(),
package_data={
'': ['zebra_logo.png', 'zebra_logo.grf']
},
description="ZPL Image converter",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Teemu Karimerto',
author_email='[email protected]',
version=zplconvert.__version__,
url='https://github.com/Karimerto/zplconvert',
download_url='https://github.com/Karimerto/zplconvert/archive/v0.0.4.tar.gz',
license='MIT License',
entry_points={
'console_scripts': [
'zplconvert = zplconvert.main:main',
'zplparse = zplconvert.zplparser:main'
]
},
keywords='zebra zpl convert converter',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: Multimedia :: Graphics :: Graphics Conversion',
'Topic :: Printing']
)