include Jinja templates in MANIFEST.in

This commit is contained in:
Max Erenberg 2021-11-02 01:53:53 -04:00
parent 729f443e72
commit bdc2f9b31b
4 changed files with 9 additions and 1 deletions

1
MANIFEST.in Normal file
View File

@ -0,0 +1 @@
include ceod/model/templates/*.j2

View File

@ -1 +1 @@
1.0.2
1.0.3

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
ceo (1.0.3-buster1) buster; urgency=high
* Include Jinja templates in MANIFEST.in.
-- Max Erenberg <merenber@csclub.uwaterloo.ca> Tue, 02 Nov 2021 05:52:35 +0000
ceo (1.0.2-buster1) buster; urgency=medium
* Put term check into LDAPService.

View File

@ -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'],
},