voltron/setup.py

20 lines
515 B
Python
Raw Normal View History

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'],
entry_points = {
'console_scripts': ['voltron = voltron:main']
2013-09-17 09:21:35 +00:00
},
zip_safe = False
)