From 2a4a724408564f57fed779bf8d60cba473718627 Mon Sep 17 00:00:00 2001 From: Steven Loria Date: Wed, 30 Jan 2019 19:16:08 -0500 Subject: [PATCH] Actually include LICENSE in sdist Turns out #90 only adds LICENSE to the wheel. This ensures that LICENSE and README.md are also in the sdist. --- MANIFEST.in | 1 + setup.cfg | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..8bd3bb6e --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include *.md LICENSE diff --git a/setup.cfg b/setup.cfg index 1be202fb..150f236a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,4 +2,4 @@ universal = True [metadata] -license_file = LICENSE +license_files = LICENSE