Finally got text file includes working
authorNeil Smith <neil.git@njae.me.uk>
Thu, 22 Oct 2020 15:49:45 +0000 (16:49 +0100)
committerNeil Smith <neil.git@njae.me.uk>
Thu, 22 Oct 2020 15:49:45 +0000 (16:49 +0100)
MANIFEST.in [new file with mode: 0644]
setup.py

diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644 (file)
index 0000000..7ca62b7
--- /dev/null
@@ -0,0 +1 @@
+include szyfrow/language_model_files/*.txt
index 2df3ed035be7e1067d1dafbdae11cb8173785e8d..fdb5af53d6ffdf0b09c31577fecc01c26f00893a 100644 (file)
--- 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,
 )