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