Skip to content

Commit

Permalink
Fix version line path in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
chazeon committed Jan 5, 2021
1 parent 5839f40 commit db9ed9a
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
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
from pathlib import Path

with open(Path(__file__) / "cij" / "version.py") as fp: exec(fp.read())
with open(Path(__file__).parent / "cij" / "version.py") as fp: exec(fp.read())

setup(
name='cij',
Expand Down Expand Up @@ -36,6 +36,7 @@
'cij-run=cij.cli.main:main',
'cij-run-static=cij.cli.static:main',
'cij-extract=cij.cli.extract:main',
'cij-extract-geotherm=cij.cli.geotherm:main',
'cij-plot=cij.cli.plot:main',
'cij-modes=cij.cli.modes:main',
'cij-fill=cij.cli.fill:main',
Expand Down

0 comments on commit db9ed9a

Please sign in to comment.