Skip to content

Commit f8d4721

Browse files
authored
Merge branch 'master' into publis-error-v1_master
2 parents 714b995 + 824df86 commit f8d4721

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
# -*- encoding: utf-8 -*-
22
import io
3-
import re
4-
import os
53
from os.path import dirname
64
from os.path import join
7-
import inspect
85

96
from setuptools import setup
107

@@ -15,6 +12,10 @@ def read(*names, **kwargs):
1512
encoding=kwargs.get("encoding", "utf8")
1613
).read()
1714

15+
16+
long_description = read("README.rst")
17+
18+
1819
instreq = [l.rstrip() for l in read('requirements.txt').splitlines()
1920
if not l.startswith('#')]
2021

@@ -47,5 +48,6 @@ def read(*names, **kwargs):
4748
'azure': ['azure-storage-blob'],
4849
},
4950
setup_requires=['setuptools_scm'],
51+
long_description=long_description,
5052
long_description_content_type='text/markdown'
5153
)

0 commit comments

Comments
 (0)