2013-07-08 13:15:51 +00:00
|
|
|
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'],
|
2013-07-17 12:50:49 +00:00
|
|
|
install_requires = [],
|
2013-09-17 09:21:35 +00:00
|
|
|
data_files=['voltron.gdb', 'voltron.cfg', 'dbgentry.py'],
|
2013-07-08 13:15:51 +00:00
|
|
|
entry_points = {
|
|
|
|
'console_scripts': ['voltron = voltron:main']
|
2013-09-17 09:21:35 +00:00
|
|
|
},
|
|
|
|
zip_safe = False
|
2013-07-08 13:15:51 +00:00
|
|
|
)
|