-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (35 loc) · 1.22 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
36
37
38
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import dirname, join
from setuptools import setup, find_packages
with open(join(dirname(__file__), 'minprinter/VERSION'), 'rb') as f:
version = f.read().decode('ascii').strip()
setup(
name='minprinter',
version=version,
description='A printer to print signed mobile phone invoice PDFs',
author='Chengcheng Shao',
maintainer='Chengcheng Shao',
maintainer_email='[email protected]',
license='GPLv3',
packages=find_packages(exclude=('tests', 'tests.*')),
include_package_data=True,
zip_safe=True,
entry_points={
'console_scripts': ['minprint = minprinter.frontend:gui_main']
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: GUI',
'Intended Audience :: Science/Research',
'License :: GPL :: Version 3',
'Operating System :: POSIX :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'appJar>=0.94.0', 'openpyxl>=3.0.2', 'pdf2image>=1.11.0'
],
)