From 6f710f81abf473a910cd35d0c70ee95bf181dedf Mon Sep 17 00:00:00 2001 From: Peter Boin Date: Sat, 22 Jul 2017 00:28:52 +1000 Subject: [PATCH] pygcode-norm available in commandline upon installation --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index 90777a5..7c04491 100644 --- a/setup.py +++ b/setup.py @@ -26,9 +26,13 @@ CLASSIFIERS = [ "Topic :: Scientific/Engineering", ] INSTALL_REQUIRES = [ + 'argparse', # Python command-line parsing library 'euclid3', # 2D and 3D vector, matrix, quaternion and geometry module. 'six', # Python 2 and 3 compatibility utilities ] +SCRIPTS = [ + 'scripts/pygcode-norm', +] ################################################################### @@ -78,4 +82,5 @@ if __name__ == "__main__": zip_safe=False, classifiers=CLASSIFIERS, install_requires=INSTALL_REQUIRES, + scripts=SCRIPTS, )