mirror of https://github.com/snare/voltron.git
23 lines
704 B
Python
Executable File
23 lines
704 B
Python
Executable File
from setuptools import setup
|
|
|
|
setup(
|
|
name = "voltron",
|
|
version = "0.1",
|
|
author = "snare",
|
|
author_email = "snare@ho.ax",
|
|
description = ("A UI for GDB & LLDB"),
|
|
license = "Buy snare a beer",
|
|
keywords = "voltron gdb lldb",
|
|
url = "https://github.com/snarez/voltron",
|
|
packages=['voltron'],
|
|
install_requires = ['rl', 'scruffy', 'flask', 'cherrypy'],
|
|
data_files=['voltron.gdb', 'dbgentry.py'],
|
|
package_data = {'voltron': ['config/*']},
|
|
install_package_data = True,
|
|
entry_points = {
|
|
'console_scripts': ['voltron = voltron:main']
|
|
},
|
|
zip_safe = False,
|
|
dependency_links = ["https://github.com/snarez/scruffy/tarball/master#egg=scruffy"]
|
|
)
|