-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 1.25 KB
/
setup.py
File metadata and controls
29 lines (28 loc) · 1.25 KB
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
from setuptools import setup
setup(
name = "MicroBill",
version = "1.0.0",
author = "Juan Barbosa",
author_email = "js.barbosa10@uniandes.edu.co",
# description = ("Abacus Software is a suite of tools build to ensure your experience with Tausand's coincidence counters becomes simplified."),
license = "GPL",
keywords = "example documentation tutorial",
url = "https://github.com/jsbarbosa/microbill",
packages=['microbill'],
install_requires = ['numpy', 'PyQt5', 'pandas', 'xlrd', 'openpyxl',
'xlsxwriter', 'reportlab', 'html2text', 'lxml'
],
long_description = "",#read('README'),
classifiers = [
"Development Status :: 1 - Planning",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License (GPL)",
],
data_files=[('microbill/Registers', ['microbill/Registers/Clientes.xlsx',
'microbill/Registers/Independientes.xlsx',
'microbill/Registers/Precios.xlsx',
'microbill/Registers/Precios (daemon).xlsx',
'microbill/Registers/Registro.xlsx']),
('microbill', ['microbill/icon.ico', 'microbill/logo.png'])
]
)