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'],
|
2014-07-24 14:34:42 +00:00
|
|
|
install_requires = ['rl', 'scruffy', 'flask', 'cherrypy'],
|
2013-10-12 08:08:30 +00:00
|
|
|
data_files=['voltron.gdb', 'dbgentry.py'],
|
|
|
|
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
|
|
|
},
|
2013-11-30 14:53:40 +00:00
|
|
|
zip_safe = False,
|
|
|
|
dependency_links = ["https://github.com/snarez/scruffy/tarball/master#egg=scruffy"]
|
2013-07-08 13:15:51 +00:00
|
|
|
)
|