From b5d9b5acc2890d4780a9a2c05c5a913359592a1f Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Sat, 10 Oct 2020 22:59:44 -0700 Subject: [PATCH] Update setup.py Added package_data --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ceed404..96d63fc 100644 --- a/setup.py +++ b/setup.py @@ -31,9 +31,12 @@ setup(name='ptulsconv', packages=['ptulsconv'], keywords='text-processing parsers film tv editing editorial', install_requires=['parsimonious', 'tqdm'], + package_data={ + "ptulsconv": ["*.xsl"] + }, entry_points={ 'console_scripts': [ 'ptulsconv = ptulsconv.__main__:main' ] } - ) \ No newline at end of file + )