diff options
author | mrichomme <morgan.richomme@orange.com> | 2020-08-25 17:27:05 +0200 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2020-08-26 14:39:40 +0000 |
commit | d1cc6db2b73f6381e82cfa8613da66e8b3705440 (patch) | |
tree | de0082244be4e4a1c2d0dd8da634f9d2ff3e6e44 /test/security/check_certificates/setup.py | |
parent | 9b151c6616c0e718edd9955e1c3e9597a5cbbc5e (diff) |
Add MANIFEST.in to include j2 file in the python package
Not sure it is the best way, maybe it can be done with setup.cfg..
it seems to be OK
Issue-ID: INT-1570
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Change-Id: I7a1ddefba0ec0bbe35a5a51baebdf4a715a4f131
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Diffstat (limited to 'test/security/check_certificates/setup.py')
-rw-r--r-- | test/security/check_certificates/setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/security/check_certificates/setup.py b/test/security/check_certificates/setup.py index 9a370e270..f5154f282 100644 --- a/test/security/check_certificates/setup.py +++ b/test/security/check_certificates/setup.py @@ -1,4 +1,5 @@ import setuptools setuptools.setup( setup_requires=['pbr', 'setuptools'], - pbr=True) + pbr=True, + include_package_data=True) |