File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 6
6
except ImportError :
7
7
from distutils .core import setup
8
8
9
+ from os import path
10
+ this_directory = path .abspath (path .dirname (__file__ ))
11
+ with open (path .join (this_directory , 'README.md' ), encoding = 'utf-8' ) as f :
12
+ long_description = f .read ()
13
+
9
14
# Only install pytest and runner when test command is run
10
15
# This makes work easier for offline installs or low bandwidth machines
11
16
needs_pytest = {'pytest' , 'test' , 'ptr' }.intersection (sys .argv )
22
27
'tableauserverclient.server.endpoint' ],
23
28
license = 'MIT' ,
24
29
description = 'A Python module for working with the Tableau Server REST API.' ,
30
+ long_description = long_description ,
31
+ long_description_content_type = 'text/markdown' ,
25
32
test_suite = 'test' ,
26
33
setup_requires = pytest_runner ,
27
34
install_requires = [
You can’t perform that action at this time.
0 commit comments