Skip to content

Commit 479ae2b

Browse files
author
Lachlan Grose
committed
fix: setup.py codec and filename error
1 parent efdfb90 commit 479ae2b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
import numpy
2424
import os
25+
import codecs
2526

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

@@ -41,7 +42,7 @@
4142
'tqdm',
4243
],
4344
description="Open source 3D structural geology modelling",
44-
long_description=codecs.open("README.rst", "r", "utf-8").read(),
45+
long_description=codecs.open("README.md", "r", "utf-8").read(),
4546
author="Lachlan Grose",
4647
author_email="lachlan.grose@monash.edu",
4748
license=("MIT"),

0 commit comments

Comments
 (0)