From 5259cd63a8691f9f4ead41a3024b1987f9eb0af1 Mon Sep 17 00:00:00 2001 From: Josiah Carlson Date: Thu, 12 Apr 2018 21:20:59 -0700 Subject: [PATCH] Adds MANIFEST.in, per request --- MANIFEST.in | 4 ++++ Makefile | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..b276bc5 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,4 @@ +include LICENSE +include LICENSE3 +include README.rst + diff --git a/Makefile b/Makefile index 3a00398..ad8e711 100644 --- a/Makefile +++ b/Makefile @@ -16,4 +16,4 @@ test: python3.6 -m tests.test_crontab upload: - python setup.py sdist upload + python3.6 setup.py sdist upload diff --git a/setup.py b/setup.py index b1d0253..caf9d1e 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ except: setup( name='crontab', - version='0.22.0', + version='0.22.1', description='Parse and use crontab schedules in Python', author='Josiah Carlson', author_email='josiah.carlson@gmail.com',