|
23 | 23 |
|
24 | 24 | # Things that change more often go here. |
25 | 25 | copyright = """ |
26 | | -Copyright (C) 2008-2010, 2013-2018, 2020 Rocky Bernstein <rocky@gnu.org>. |
| 26 | +Copyright (C) 2008-2010, 2013-2018, 2020-2021 Rocky Bernstein <rocky@gnu.org>. |
27 | 27 | """ |
28 | 28 |
|
29 | 29 | classifiers = [ |
|
39 | 39 | "Programming Language :: Python :: 2.5", |
40 | 40 | "Programming Language :: Python :: 2.6", |
41 | 41 | "Programming Language :: Python :: 2.7", |
| 42 | + "Programming Language :: Python :: Implementation :: PyPy", |
42 | 43 | ] |
43 | 44 |
|
44 | 45 | # Python-version | package | last-version | |
|
50 | 51 | # The rest in alphabetic order |
51 | 52 | author = "Rocky Bernstein" |
52 | 53 | author_email = "rocky@gnu.org" |
| 54 | + |
| 55 | +entry_points = { |
| 56 | + "console_scripts": [ |
| 57 | + "trepan2 = trepan.__main__:main", |
| 58 | + "trepan2c = trepan.client:main", |
| 59 | + ] |
| 60 | +} |
| 61 | + |
53 | 62 | ftp_url = None |
54 | 63 | install_requires = [ |
55 | 64 | "columnize >= 0.3.10", |
56 | 65 | "nose>=1.0.0, <= 1.3.7", |
57 | | - "pyficache >= 2.2.1", |
| 66 | + "pyficache >= 2.3.0", |
58 | 67 | "pygments == 2.2.0", # Later releases don't support Python 2.7 |
59 | 68 | "spark_parser >= 1.8.9, <1.9.0", |
60 | | - "uncompyle6 >= 3.7.4", |
| 69 | + "uncompyle6 >= 3.8.0", |
61 | 70 | "term-background >= 1.0.1", |
62 | 71 | "tracer >= 0.3.2", |
63 | 72 | "unittest2", |
64 | | - "xdis >= 5.0.4", |
| 73 | + "xdis >= 6.0.3,<6.1.0", |
65 | 74 | ] |
66 | 75 | license = "GPL3" |
67 | 76 | mailing_list = "python-debugger@googlegroups.com" |
@@ -94,7 +103,7 @@ def get_srcdir(): |
94 | 103 | # trepan/version.py sets variable __version__. |
95 | 104 | ns = {} |
96 | 105 | exec(open(osp.join(get_srcdir(), "trepan", "version.py")).read(), ns) |
97 | | -version = ns["__version__"] |
| 106 | +__version__ = ns["__version__"] |
98 | 107 | web = "http://github.com/rocky/python2-trepan/" |
99 | 108 |
|
100 | 109 | # tracebacks in zip files are funky and not debuggable |
|
0 commit comments