Skip to content

Commit 8e5039b

Browse files
authored
Merge pull request #41 from hugovk/long_description
Use README.md as description on PyPI
2 parents 3fba3a3 + 94c3a40 commit 8e5039b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,14 @@
55
tests_require = f.readlines()
66
install_requires = [t.strip() for t in tests_require]
77

8+
with open('README.md') as f:
9+
long_description = f.read()
10+
811
setup(name='contextily',
912
version='0.99.0',
1013
description='Context geo-tiles in Python',
14+
long_description=long_description,
15+
long_description_content_type='text/markdown',
1116
url='https://github.com/darribas/contextily',
1217
author='Dani Arribas-Bel',
1318
author_email='[email protected]',

0 commit comments

Comments
 (0)