Skip to content

Commit

Permalink
fix: setup.py codec and filename error
Browse files Browse the repository at this point in the history
  • Loading branch information
Lachlan Grose committed Oct 11, 2021
1 parent efdfb90 commit 479ae2b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

import numpy
import os
import codecs

package_root = os.path.abspath(os.path.dirname(__file__))

Expand All @@ -41,7 +42,7 @@
'tqdm',
],
description="Open source 3D structural geology modelling",
long_description=codecs.open("README.rst", "r", "utf-8").read(),
long_description=codecs.open("README.md", "r", "utf-8").read(),
author="Lachlan Grose",
author_email="lachlan.grose@monash.edu",
license=("MIT"),
Expand Down

0 comments on commit 479ae2b

Please sign in to comment.