voltron/setup.py

20 lines
515 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 = [],
data_files=['voltron.gdb', 'voltron.cfg', 'dbgentry.py'],
entry_points = {
'console_scripts': ['voltron = voltron:main']
},
zip_safe = False
)