-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
48 lines (46 loc) · 1.59 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# !/usr/bin/env python
from setuptools import setup
setup(
name='pystack-debugger',
version='0.11.0',
description='Tool to print python thread and greenlet stacks',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Haochuan Guo',
author_email='guohaochuan@gmail.com',
maintainer='Jiangge Zhang',
maintainer_email='tonyseek@gmail.com',
py_modules=['pystack'],
zip_safe=False,
license='MIT',
url='https://github.com/wooparadog/pystack/',
keywords=['pystack', 'pstack', 'jstack', 'gdb', 'lldb', 'greenlet'],
entry_points={
'console_scripts': [
'pystack = pystack:main',
],
},
install_requires=[
'click',
],
platforms=['linux', 'darwin'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development',
'Topic :: Software Development :: Debuggers',
'Topic :: Utilities',
],
)