From 38f2b716426e621ddc4f2cae40f99cf978f8bbec Mon Sep 17 00:00:00 2001 From: Quantum Date: Wed, 22 Aug 2018 14:10:54 -0400 Subject: [PATCH] Release 0.1.2 with `long_description` since PyPI has markdown now. --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 349f0e4..42796cf 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,18 @@ #!/usr/bin/env python +import os from setuptools import setup, find_packages +with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f: + long_description = f.read() + setup( name='optimize-later', - version='0.1.1', + version='0.1.2', description='Mark potentially slow blocks for notifications when it actually turns out too slow, ' 'so you can optimize it.', + long_description=long_description, + long_description_content_type='text/markdown', author='Quantum', author_email='quantum@dmoj.ca', url='https://github.com/quantum5/optimize-later',