forked from inducer/pudb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·54 lines (50 loc) · 1.65 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
49
50
51
52
53
54
#!/usr/bin/env python
from setuptools import setup
from pudb import VERSION
import sys
py_version_major = sys.version_info[0]
if py_version_major == 3:
PY_VERSION = str(py_version_major)
else:
PY_VERSION = ''
try:
readme = open("README.rst")
long_description = str(readme.read())
finally:
readme.close()
setup(name='pudb',
version=VERSION,
description='A full-screen, console-based Python debugger',
long_description=long_description,
author='Andreas Kloeckner',
author_email='[email protected]',
install_requires=[
"urwid>=1.1.1",
"pygments>=1.0",
],
url='http://pypi.python.org/pypi/pudb',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Console :: Curses",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Quality Assurance",
"Topic :: System :: Recovery Tools",
"Topic :: System :: Software Distribution",
"Topic :: Terminals",
"Topic :: Utilities",
],
packages=["pudb"],
entry_points={
'console_scripts': ['pudb' + PY_VERSION + ' = pudb.run:main'],
'gui_script': []},
)