mirror of
https://github.com/quantum5/optimize-later.git
synced 2025-04-24 12:32:04 -04:00
Release 0.1.2 with long_description
since PyPI has markdown now.
This commit is contained in:
parent
29dfc5957a
commit
38f2b71642
8
setup.py
8
setup.py
|
@ -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',
|
||||||
|
|
Loading…
Reference in a new issue