mirror of
				https://github.com/python-escpos/python-escpos
				synced 2025-10-23 09:30:00 +00:00 
			
		
		
		
	Added proper installer
This commit is contained in:
		
							
								
								
									
										29
									
								
								setup.py
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										29
									
								
								setup.py
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,29 @@ | ||||
| #!/usr/bin/python | ||||
|  | ||||
| from distutils.core import setup | ||||
|  | ||||
| setup( | ||||
|     name='escpos', | ||||
|     version='2.7', | ||||
|     url='http://code.google.com/p/python-escpos', | ||||
|     download_url='http://python-escpos.googlecode.com/files/python-escpos-1.0.zip', | ||||
|     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', | ||||
|     ], | ||||
| ) | ||||
		Reference in New Issue
	
	Block a user
	 Manuel F Martinez
					Manuel F Martinez