We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3fba3a3 + 94c3a40 commit 8e5039bCopy full SHA for 8e5039b
setup.py
@@ -5,9 +5,14 @@
5
tests_require = f.readlines()
6
install_requires = [t.strip() for t in tests_require]
7
8
+with open('README.md') as f:
9
+ long_description = f.read()
10
+
11
setup(name='contextily',
12
version='0.99.0',
13
description='Context geo-tiles in Python',
14
+ long_description=long_description,
15
+ long_description_content_type='text/markdown',
16
url='https://github.com/darribas/contextily',
17
author='Dani Arribas-Bel',
18
author_email='[email protected]',
0 commit comments