-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·27 lines (24 loc) · 1.02 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
#~ #!/usr/bin/env python
from distutils.core import setup
import os
# TODO
# Copiar base de datos, iconos y archivo de configuracion.
setup(scripts=['script/pos-start', 'script/report-pos'],
name="Sistema-POS",
version="0.1",
description="Sistema de ventas e impresion de entradas",
author="Alberto Paparelli",
author_email="[email protected]",
url="http://",
license="",
packages=['pos'],
#packages_dir=['pos'],
long_description="""ZARAZA""",
#~ package_data={'pos':['icons/16x16/*','icons/22x22/*','icons/32x32/*']},
#~ package_data={('pos':['icons/16x16/*','icons/22x22/*','icons/32x32/*')]},
#~ data_files=['pos':['icons/16x16/*','icons/22x22/*','icons/32x32/*')],
#~ ('config', ['config.cfg']), ('database', ['pos/db/filo.db'])]
#~ package_data=[('pos', ['pos/icons/16x16/*','pos/icons/22x22/*',
#~ 'pos/icons/32x32/*', 'pos/icons/logo.png',
#~ 'pos/config.cfg', 'pos/db/filo.db'])],
)