From deed628b25281baff05b8ec8310a7458ac298d7b Mon Sep 17 00:00:00 2001 From: Neil Smith Date: Thu, 22 Oct 2020 16:49:45 +0100 Subject: [PATCH] Finally got text file includes working --- MANIFEST.in | 1 + setup.py | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..7ca62b7 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include szyfrow/language_model_files/*.txt diff --git a/setup.py b/setup.py index 2df3ed0..fdb5af5 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="szyfrow", - version="0.0.3", + version="0.0.6", author="Neil Smith", author_email="neil.szyfrow@njae.me.uk", description="Tools for using and breaking simple ciphers", @@ -18,5 +18,6 @@ setuptools.setup( "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], - python_requires='>=3.6', + python_requires='>=3.7', + include_package_data=True, ) -- 2.34.1