diff --git a/setup.py b/setup.py index 47d1bab..111a90c 100755 --- a/setup.py +++ b/setup.py @@ -9,16 +9,16 @@ except(IOError, ImportError): from setuptools import setup, find_packages setup( name="pycnc", - version="1.1.0", + version="2.0.1", packages=find_packages(), scripts=['pycnc'], # metadata for upload to PyPI - author="Nikolay Khabarov", - author_email="2xl@mail.ru", - description="CNC machine controller", + author="sinseman44", + author_email="sinseman44@gmail.com", + description="PiPlot2D machine controller", long_description=long_description, license="MIT", - keywords="CNC 3D printer robot raspberry pi", - url="https://github.com/Nikolay-Kha/PyCNC", + keywords="CNC 3D printer robot raspberry pi plotter2D", + url="https://github.com/sinseman44/PyCNC/tree/l293d", )