From bdc2f9b31b5b70d97670ff290c677246ef06d522 Mon Sep 17 00:00:00 2001 From: Max Erenberg <> Date: Tue, 2 Nov 2021 01:53:53 -0400 Subject: [PATCH] include Jinja templates in MANIFEST.in --- MANIFEST.in | 1 + VERSION.txt | 2 +- debian/changelog | 6 ++++++ setup.py | 1 + 4 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..a5ff26c --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include ceod/model/templates/*.j2 diff --git a/VERSION.txt b/VERSION.txt index 6d7de6e..21e8796 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -1.0.2 +1.0.3 diff --git a/debian/changelog b/debian/changelog index e5c7a30..0b48dee 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +ceo (1.0.3-buster1) buster; urgency=high + + * Include Jinja templates in MANIFEST.in. + + -- Max Erenberg Tue, 02 Nov 2021 05:52:35 +0000 + ceo (1.0.2-buster1) buster; urgency=medium * Put term check into LDAPService. diff --git a/setup.py b/setup.py index 1a0dd00..ee3a488 100644 --- a/setup.py +++ b/setup.py @@ -26,6 +26,7 @@ setup( python_requires='>=3.7', install_requires=requirements, tests_require=test_requirements, + include_package_data=True, entry_points={ 'console_scripts': ['ceo=ceo.__main__:main'], },