From 9178e0883b735f882729c19a7a68df68b49e057b Mon Sep 17 00:00:00 2001 From: Tim Hatch Date: Wed, 20 May 2020 22:28:08 -0700 Subject: [PATCH] Include missing files for sdist Closes #1 --- MANIFEST.in | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..2f6a404 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include *.txt *.md +include VERSION diff --git a/setup.py b/setup.py index 5693275..4d446d4 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ here = path.abspath(path.dirname(__file__)) # Get the long description from the README file -with open(path.join(here, 'README.md'), encoding='utf-8') as readme_file: +with open(path.join(here, 'readme.md'), encoding='utf-8') as readme_file: LONG_DESCRIPTION = readme_file.read() with open(path.join(here, 'VERSION'), encoding='utf-8') as version_file: