-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·49 lines (40 loc) · 1.56 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
#!/usr/bin/env python3
#from distutils.core import setup
from setuptools import setup
import os
import subprocess
import sys
if os.path.exists('doc/pod2help.py'):
proc_rst = subprocess.run(['doc/pod2help.py', "-rst", 'doc/gtest_gui.pod'],
stdout=subprocess.PIPE, text=True, check=True)
long_description = proc_rst.stdout
else:
long_description = None
setup(
name='mote-gtest-gui',
version='0.9.0',
packages=['gtest_gui'],
scripts=['bin/gtest_gui'],
install_requires=['trowser',
'appdirs ; platform_system=="Windows"'],
author='T. Zoerner',
author_email='tomzox@gmail.com',
url='https://github.com/tomzox/gtest_gui',
description="Module tester's Gtest GUI is a full-featured graphical user-interface " \
"to C++ test applications using the GoogleTest framework.",
long_description=long_description,
long_description_content_type='text/x-rst',
classifiers=[
'Topic :: Software Development :: Testing',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Environment :: X11 Applications',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Developers',
],
keywords=['google-test', 'gtest', 'testing-tools', 'test-runners', 'tkinter', 'GUI'],
platforms=['posix', 'win32'],
)