-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
30 lines (26 loc) · 1.29 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup
README = """
pystuck.py is a utility for analyzing stuck python programs (or just hardcore debugging).
in order to debug a python program (hence, the debugee),
add this line anywhere at startup: import pystuck; pystuck.run_server().
this script is the client, once invoked it connects to the debuggee
and prints the debugee's threads stack traces (good for most cases).
in addition, it opens an ipython prompt with an rpyc connection that provides
access to the debuggee's modules (good for inspecting variables)."""
setup(name='pystuck',
version='0.8.5',
classifiers = ["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5"],
description=README,
author='Alon Horev',
author_email='[email protected]',
packages=['pystuck'],
install_requires=['rpyc', 'ipython<5.0'],
license='BSD',
url='https://github.com/alonho/pystuck',
entry_points={'console_scripts': ['pystuck=pystuck:main']})