python-escpos/setup.py

30 lines
884 B
Python
Raw Normal View History

2013-03-14 06:22:43 +00:00
#!/usr/bin/python
from distutils.core import setup
setup(
name='escpos',
2014-05-21 06:51:39 +00:00
version='1.0-4',
2015-06-04 22:55:14 +00:00
url='https://github.com/manpaz/python-escpos',
download_url='https://github.com/manpaz/python-escpos.git',
2013-03-14 06:22:43 +00:00
description='Python library to manipulate ESC/POS Printers',
license='GNU GPL v3',
long_description=open('README').read(),
author='Manuel F Martinez',
author_email='manpaz@bashlinux.com',
platforms=['linux'],
packages=[
'escpos',
],
package_data={'': ['COPYING']},
classifiers=[
'Development Status :: 1 - Alpha',
'License :: OSI Approved :: GNU GPL v3',
'Operating System :: GNU/Linux',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: System :: Pheripherals',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)