File: 0001-explicit-package.patch

package info (click to toggle)
capirca 2.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,628 kB
  • sloc: python: 37,900; perl: 49; sh: 32; makefile: 4
file content (23 lines) | stat: -rw-r--r-- 756 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From 895faeccdaffc9e3320f9445934d01bcb4fc0861 Mon Sep 17 00:00:00 2001
From: Rob Ankeny <ankenyr@gmail.com>
Date: Fri, 12 Aug 2022 15:42:54 -0700
Subject: [PATCH] Set package in setup.py explicitly.

Fixes https://github.com/google/capirca/issues/323
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 163eab46..1e3a0e98 100644
--- a/setup.py
+++ b/setup.py
@@ -35,7 +35,7 @@
     url='https://github.com/google/capirca/',
     maintainer='Capirca Team',
     maintainer_email='capirca-dev@google.com',
-    packages=setuptools.find_packages(exclude=['tests*']),
+    packages=['capirca'],
     zip_safe=False,
     entry_points={
         'console_scripts': ['aclgen = capirca.aclgen:EntryPoint'],