From 4469c23fbfde0df94c449c065d9069e905c967c3 Mon Sep 17 00:00:00 2001 From: ShadowMoose Date: Sat, 26 May 2018 17:21:34 -0700 Subject: [PATCH] Cleanup README & add Markdown support. --- README.md | 4 ---- setup.py | 1 + 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 9e7e9e5..8d03573 100644 --- a/README.md +++ b/README.md @@ -7,19 +7,15 @@ It should work on Windows/Linx/Mac, and also supports os-specific permissions. To install the library, run: ``` - pip install chromedriver-install - ``` Then call it in your code like so: ```python - import chromedriver_install as cdi path = cdi.install(file_directory='./lib/', verbose=True, chmod=True, overwrite=False, version=None) print('Installed chromedriver to path: %s' % path) - ``` There are options for the output directory, disabling printout, running chmod on the downloaded executable, diff --git a/setup.py b/setup.py index 536c681..c2e6adb 100644 --- a/setup.py +++ b/setup.py @@ -14,6 +14,7 @@ def readme(file='', split=False): version='0.3', description='Package for installing the latest chromedriver automatically.', long_description=readme('README.md'), + long_description_content_type='text/markdown', url='http://github.com/shadowmoose/chrome_driver', author='ShadowMoose', author_email='shadowmoose@github.com',