diff --git a/dgp/contribs/dgp2wicker/readme.md b/dgp/contribs/dgp2wicker/README.md similarity index 82% rename from dgp/contribs/dgp2wicker/readme.md rename to dgp/contribs/dgp2wicker/README.md index 42ca0b0a..3e5f4c3b 100644 --- a/dgp/contribs/dgp2wicker/readme.md +++ b/dgp/contribs/dgp2wicker/README.md @@ -1,6 +1,7 @@ # DGP SynchronizedScene to Wicker Conversion -This adds support for using DGP data in [wicker](https://github.com/woven-planet/wicker) +This adds support for using DGP data in +[wicker](https://github.com/woven-planet/wicker) Specifically this saves the output of SynchronizedScene to wicker @@ -13,9 +14,10 @@ cd dgp/contribs/dgp2wicker pip install --editable . ``` -or, use the included docker. -Note: the s3 location of the wicker datasets is specified in a required wicker config file, please see Wicker documentaiton for more details. An example sample_wickerconfig.json is included in the docker, this can be modified -with the s3 bucket path and will work with the docker. +or, use the included docker. Note: the s3 location of the wicker datasets is +specified in a required wicker config file, please see Wicker documentaiton for +more details. An example sample_wickerconfig.json is included in the docker, +this can be modified with the s3 bucket path and will work with the docker. ```bash cd dgp/contribs/dgp2wicker diff --git a/dgp/contribs/dgp2wicker/setup.py b/dgp/contribs/dgp2wicker/setup.py index 60f7f3b5..a0275702 100644 --- a/dgp/contribs/dgp2wicker/setup.py +++ b/dgp/contribs/dgp2wicker/setup.py @@ -24,7 +24,7 @@ def run(self): with open('requirements.txt', 'r', encoding='utf-8') as f: requirements = f.read().splitlines() -with open('readme.md', 'r', encoding='utf-8') as f: +with open('README.md', 'r', encoding='utf-8') as f: readme = f.read() packages = find_packages(exclude=['tests']) @@ -32,7 +32,7 @@ def run(self): name="dgp2wicker", version=__version__, description="Tools to convert TRI's DGP to L5's Wicker format.", - long_description= readme, + long_description=readme, long_description_content_type='text/markdown', author="Chris Ochoa, Kuan Lee", author_email='charles.ochoa@woven-planet.global, kuan-hui.lee@woven-planet.global',