Release 0.1.2 with long_description since PyPI has markdown now.

This commit is contained in:
Quantum 2018-08-22 14:10:54 -04:00
parent 29dfc5957a
commit 38f2b71642

View file

@ -1,12 +1,18 @@
#!/usr/bin/env python #!/usr/bin/env python
import os
from setuptools import setup, find_packages from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f:
long_description = f.read()
setup( setup(
name='optimize-later', 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, ' description='Mark potentially slow blocks for notifications when it actually turns out too slow, '
'so you can optimize it.', 'so you can optimize it.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Quantum', author='Quantum',
author_email='quantum@dmoj.ca', author_email='quantum@dmoj.ca',
url='https://github.com/quantum5/optimize-later', url='https://github.com/quantum5/optimize-later',