add video, bump version

This commit is contained in:
Nikolay Khabarov
2017-07-15 04:10:01 +03:00
parent 099dedaabf
commit c09fd31457
2 changed files with 3 additions and 3 deletions

View File

@@ -28,7 +28,8 @@ Python is not good choice for real time application, but since project just
needs to set up DMA buffers and hardware will do the rest, Python become the
perfect choice for easy development of this project.
Video demo - [YouTube video](https://youtu.be/vcedo59raS4)
Video demo - [YouTube video](https://youtu.be/41wdmmztTNA)
And the original video when PyCNC was just a prototype [YouTube video](https://youtu.be/vcedo59raS4)
# Current gcode support
Commands G0, G1, G2, G3, G4, G17, G18, G19, G20, G21, G28, G53, G90, G91, G92,

View File

@@ -9,7 +9,7 @@ except(IOError, ImportError):
from setuptools import setup, find_packages
setup(
name="pycnc",
version="0.1.3",
version="1.0.0",
packages=find_packages(),
scripts=['pycnc'],
@@ -22,4 +22,3 @@ setup(
keywords="CNC 3D printer robot raspberry pi",
url="https://github.com/Nikolay-Kha/PyCNC",
)