mirror of
https://git.mirrors.martin98.com/https://github.com/petaflot/pygcode
synced 2025-06-04 11:25:20 +08:00
pygcode-norm available in commandline upon installation
This commit is contained in:
parent
1d288e9403
commit
6f710f81ab
5
setup.py
5
setup.py
@ -26,9 +26,13 @@ CLASSIFIERS = [
|
|||||||
"Topic :: Scientific/Engineering",
|
"Topic :: Scientific/Engineering",
|
||||||
]
|
]
|
||||||
INSTALL_REQUIRES = [
|
INSTALL_REQUIRES = [
|
||||||
|
'argparse', # Python command-line parsing library
|
||||||
'euclid3', # 2D and 3D vector, matrix, quaternion and geometry module.
|
'euclid3', # 2D and 3D vector, matrix, quaternion and geometry module.
|
||||||
'six', # Python 2 and 3 compatibility utilities
|
'six', # Python 2 and 3 compatibility utilities
|
||||||
]
|
]
|
||||||
|
SCRIPTS = [
|
||||||
|
'scripts/pygcode-norm',
|
||||||
|
]
|
||||||
|
|
||||||
###################################################################
|
###################################################################
|
||||||
|
|
||||||
@ -78,4 +82,5 @@ if __name__ == "__main__":
|
|||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
classifiers=CLASSIFIERS,
|
classifiers=CLASSIFIERS,
|
||||||
install_requires=INSTALL_REQUIRES,
|
install_requires=INSTALL_REQUIRES,
|
||||||
|
scripts=SCRIPTS,
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user