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 66except ImportError :
77 from distutils .core import setup
88
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+
914# Only install pytest and runner when test command is run
1015# This makes work easier for offline installs or low bandwidth machines
1116needs_pytest = {'pytest' , 'test' , 'ptr' }.intersection (sys .argv )
2227 'tableauserverclient.server.endpoint' ],
2328 license = 'MIT' ,
2429 description = 'A Python module for working with the Tableau Server REST API.' ,
30+ long_description = long_description ,
31+ long_description_content_type = 'text/markdown' ,
2532 test_suite = 'test' ,
2633 setup_requires = pytest_runner ,
2734 install_requires = [
You can’t perform that action at this time.
0 commit comments