gdbgui/setup.py

67 lines
2 KiB
Python
Raw Normal View History

2016-09-26 07:34:30 +02:00
from setuptools import find_packages, setup, Command
import sys
EXCLUDE_FROM_PACKAGES = []
version = '0.7.2.1'
2016-09-26 07:34:30 +02:00
class TestCommand (Command):
description = 'test task'
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
# import here so dependency error on Flask is not
# raised
from gdbgui.tests import test_app
2016-09-26 07:34:30 +02:00
sys.exit(test_app.main())
setup(
name='gdbgui',
version=version,
author='Chad Smith',
author_email='grassfedcode@gmail.com',
2017-01-10 22:46:13 +01:00
description=('browser-based gdb frontend using Flask and JavaScript to visually debug C, C++, Go, or Rust'),
2016-09-26 07:34:30 +02:00
url='https://github.com/cs01/gdbgui',
license='MIT',
2016-09-26 07:34:30 +02:00
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
include_package_data=True,
2017-01-10 22:46:13 +01:00
keywords=['gdb', 'python', 'machine-interface', 'parse', 'frontend', 'flask', 'browser', 'gui', 'c', 'c++', 'go', 'rust'],
2016-09-26 07:34:30 +02:00
scripts=[],
2017-01-03 22:29:37 +01:00
entry_points={
'console_scripts': [
'gdbgui = gdbgui.backend:main'
],
},
2016-09-26 07:34:30 +02:00
extras_require={},
zip_safe=False,
cmdclass={'test': TestCommand},
install_requires=[
'Flask>=0.11.1',
'pygdbmi>=0.7.1',
'pyjade>=4.0.0',
'Flask-SocketIO>=2.8.2', # for websockets
'eventlet>=0.20.1', # for websockets
2016-09-26 07:34:30 +02:00
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
2016-09-26 07:34:30 +02:00
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)