2014-10-31 03:41:14 +00:00
|
|
|
from setuptools import setup, find_packages
|
2013-07-08 13:15:51 +00:00
|
|
|
|
|
|
|
setup(
|
2015-12-26 05:50:55 +00:00
|
|
|
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",
|
2015-12-29 02:36:35 +00:00
|
|
|
packages=['voltron'],
|
2015-12-29 01:52:24 +00:00
|
|
|
install_requires=['scruffington', 'flask', 'blessed', 'pygments', 'requests_unixsocket'],
|
2014-10-31 03:00:09 +00:00
|
|
|
data_files=['dbgentry.py'],
|
2015-12-26 05:50:55 +00:00
|
|
|
package_data={'voltron': ['config/*']},
|
|
|
|
install_package_data=True,
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': ['voltron=voltron:main']
|
2013-09-17 09:21:35 +00:00
|
|
|
},
|
2015-12-26 05:50:55 +00:00
|
|
|
zip_safe=False
|
2013-07-08 13:15:51 +00:00
|
|
|
)
|