forked from inducer/pudb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (54 loc) · 1.56 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
55
56
57
58
#!/usr/bin/env python
from setuptools import setup
from pudb import VERSION
import sys
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]",
python_requires="~=3.6",
install_requires=[
"urwid>=1.1.1",
"pygments>=2.7.4",
"jedi>=0.18,<1",
"urwid_readline"
],
test_requires=[
"pytest>=2",
],
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 :: 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": [
# Deprecated. Should really use python -m pudb.
"pudb3 = pudb.run:main",
],
"gui_script": [],
},
)