forked from acesseonline/pyreportjasper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·108 lines (95 loc) · 3.49 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# -*- coding: utf-8 -*-
# GNU GENERAL PUBLIC LICENSE
#
# Copyright (c) 2020 Jadson Bonfim Ribeiro <[email protected]>
#
from setuptools import setup, find_packages
import io
import os
import re
from collections import OrderedDict
import subprocess
def version_available(cmd):
try:
# prints version and returns 0 if successulf
output = subprocess.call([cmd, "-version"])
return output == 0
except OSError as e:
# handle file not found error.
if e.errno == os.errno.ENOENT:
print("error please install " + cmd)
return False
else:
# Something else went wrong, raise the exception
raise
def check_java_version_1_8():
java_version = str(subprocess.check_output(['java', '-version'], stderr=subprocess.STDOUT))
version_number = java_version.splitlines()[0].split()[2].strip('"')
major, minor, _ = version_number.split('.')
version = '{}.{}'.format(major, minor)
if version == '1.8':
return True
else:
return False
if not version_available('java'):
print('Error: Please install Java 1.8')
exit(1)
if check_java_version_1_8() is None:
print('Error: Please install Java 1.8')
exit(1)
if os.environ.get('JAVA_HOME', None) is None:
print('Error: environment variable "JAVA_HOME" must be set to a JDK (== v1.8) installation directory')
exit(1)
with io.open('README.rst', 'rt', encoding='utf8') as f:
readme = f.read()
def get_version(package):
init_py = open(os.path.join(package, '__init__.py')).read()
return re.search("__version__ = ['\"]([^'\"]+)['\"]", init_py).group(1)
setup(
name='pyreportjasper',
version=get_version('pyreportjasper'),
url='https://github.com/PyReportJasper/pyreportjasper',
download_url='https://pypi.python.org/pypi/jpy/' + get_version('pyreportjasper'),
project_urls=OrderedDict((
('Documentation', 'https://github.com/PyReportJasper/pyreportjasper/blob/master/README.rst'),
('Code', 'https://github.com/PyReportJasper/pyreportjasper'),
('Issue tracker', 'https://github.com/PyReportJasper/pyreportjasper/issues'),
)),
license='GPLv3',
author='Jadson Bonfim Ribeiro',
author_email='[email protected]',
keywords='report jasper python',
description='This package aims to be a solution to compile and process '
'JasperReports (.jrxml & .jasper files).',
long_description=open('README.rst').read(),
long_description_content_type="text/x-rst",
zip_safe=False,
platforms='Windows, Linux, Darwin',
packages=find_packages(),
install_requires=[
'jpy',
'requests'
],
dependency_links=[
'https://github.com/bcdev/jpy/archive/master.zip#egg=jpy'
],
test_suite='test',
package_data={
'package': ['jasperstarter/*'],
},
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)