Skip to content

Commit

Permalink
revert the console script name
Browse files Browse the repository at this point in the history
  • Loading branch information
T.Tian committed Oct 14, 2020
1 parent ce901cc commit 7f3365e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/ex10_executable.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def call_exe(name, extras="", output=None):
print(f)
os.remove(f)
# Initial name
cmd = "wdf_export {0} {1}".format(filename.as_posix(),
cmd = "wdf-export {0} {1}".format(filename.as_posix(),
extras)
if output is not None:
cmd += "-o {0}".format(output)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# from setuptools.command.install import install

NAME = "renishawWiRE"
VERSION = "0.1.11"
VERSION = "0.1.12"
DESCRIPTION = open("README.md", encoding="utf-8").read()


Expand Down Expand Up @@ -64,7 +64,7 @@ def verify_version():
# "bin/wdf-export",
#],
entry_points = {
"console_scripts": ["wdf_export=renishawWiRE.export:main"],
"console_scripts": ["wdf-export=renishawWiRE.export:main"],
},
python_requires=">=3.6",
# cmdclass={"verify": VerifyVersionCommand},
Expand Down

0 comments on commit 7f3365e

Please sign in to comment.