-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
36 lines (31 loc) · 1.31 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
#!/usr/bin/env python
from distutils.core import setup
import sys
from __init__ import __version__
setup(name='pyfiscalprinter',
version=__version__,
description='Drivers for fiscal printers (Epson & Hasar) Argentina',
author='Guillermo Narvaja',
author_email='[email protected]',
maintainer = "Mariano Reingart",
maintainer_email = "[email protected]",
url='http://code.google.com/p/pyfiscalprinter',
packages=['pyfiscalprinter', ],
package_dir={'pyfiscalprinter': "."},
package_data={'pyfiscalprinter': []},
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Natural Language :: Spanish",
"Programming Language :: Python",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial :: Point-Of-Sale",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Printing",
],
keywords="fiscal printer hasar epson",
)