File: include-tests

package info (click to toggle)
python3-antlr4 4.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,240 kB
  • sloc: python: 14,802; ansic: 775; makefile: 6; sh: 2
file content (20 lines) | stat: -rw-r--r-- 731 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
From: Michael R. Crusoe <crusoe@debian.org>
Subject: Install the tests
Forwarded: no
--- python3-antlr4.orig/setup.py
+++ python3-antlr4/setup.py
@@ -3,8 +3,12 @@
 setup(
     name='antlr4-python3-runtime',
     version='4.9.1',
-    packages=['antlr4', 'antlr4.atn', 'antlr4.dfa', 'antlr4.tree', 'antlr4.error', 'antlr4.xpath'],
-    package_dir={'': 'src'},
+    packages=['antlr4', 'antlr4.atn', 'antlr4.dfa', 'antlr4.tree',
+              'antlr4.error', 'antlr4.xpath', 'antlr4.test',
+              'antlr4.test.mocks', 'antlr4.test.expr',
+              'antlr4.test.parser'],
+    package_dir={'': 'src',
+                 'antlr4.test': 'test', },
     install_requires=[
         "typing ; python_version<'3.5'",
     ],