Skip to content

Commit 9c1d2aa

Browse files
author
Cosimo Lupo
committed
setup.py: read long_description from README.rst
1 parent d9787ec commit 9c1d2aa

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,14 @@
99
needs_wheel = {'bdist_wheel'}.intersection(sys.argv)
1010
wheel = ['wheel'] if needs_wheel else []
1111

12-
# TODO: add README.rst, so we can use on both Github and PyPI
13-
# with open('README.rst', 'r') as f:
14-
# long_description = f.read()
12+
with open('README.rst', 'r') as f:
13+
long_description = f.read()
1514

1615
setup(
1716
name="ufo_extractor",
1817
version="0.2.0.dev0",
1918
description="Tools for extracting data from font binaries into UFO objects.",
20-
# long_description=long_description,
19+
long_description=long_description,
2120
author="Tal Leming",
2221
author_email="[email protected]",
2322
url="https://github.com/typesupply/extractor",

0 commit comments

Comments
 (0)