|
7 | 7 | CURDIR = os.path.abspath(os.path.dirname(__file__)) |
8 | 8 |
|
9 | 9 | EXCLUDE_FROM_PACKAGES = ["tests"] |
10 | | -REQUIRED = [ |
11 | | - "Flask>=0.12.2, <1.0", # http server |
12 | | - "Flask-Compress>=1.4.0, <2.0", # to compress flask responses |
13 | | - "Flask-SocketIO>=2.9, <3.0", # websocket server |
14 | | - "gevent>=1.2.2, <2.0", # websocket handling |
15 | | - "gevent-websocket>=0.10.1, <0.11", # also websocket |
16 | | - "eventlet>=0.25.0, <0.26", # also websocket |
17 | | - "pygdbmi>=0.9.0.0, <1.0", # parse gdb output |
18 | | - "Pygments>=2.2.0, <3.0", # syntax highlighting |
19 | | -] |
20 | | - |
| 10 | +REQUIREMENTS = io.open(os.path.join(CURDIR, "requirements.txt"), "r", encoding="utf-8").readlines() |
21 | 11 | README = io.open(os.path.join(CURDIR, "README.md"), "r", encoding="utf-8").read() |
22 | 12 | VERSION = ( |
23 | 13 | io.open(os.path.join(CURDIR, "gdbgui/VERSION.txt"), "r", encoding="utf-8") |
|
61 | 51 | ] |
62 | 52 | }, |
63 | 53 | zip_safe=False, |
64 | | - install_requires=REQUIRED, |
| 54 | + install_requires=REQUIREMENTS, |
65 | 55 | classifiers=[ |
66 | 56 | "Intended Audience :: Developers", |
67 | 57 | "Operating System :: OS Independent", |
|
0 commit comments