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 714b995 + 824df86 commit f8d4721Copy full SHA for f8d4721
setup.py
@@ -1,10 +1,7 @@
1
# -*- encoding: utf-8 -*-
2
import io
3
-import re
4
-import os
5
from os.path import dirname
6
from os.path import join
7
-import inspect
8
9
from setuptools import setup
10
@@ -15,6 +12,10 @@ def read(*names, **kwargs):
15
12
encoding=kwargs.get("encoding", "utf8")
16
13
).read()
17
14
+
+long_description = read("README.rst")
18
19
instreq = [l.rstrip() for l in read('requirements.txt').splitlines()
20
if not l.startswith('#')]
21
@@ -47,5 +48,6 @@ def read(*names, **kwargs):
47
48
'azure': ['azure-storage-blob'],
49
},
50
setup_requires=['setuptools_scm'],
51
+ long_description=long_description,
52
long_description_content_type='text/markdown'
53
)
0 commit comments