update setup.py

This commit is contained in:
sinseman44
2020-11-14 11:35:45 +00:00
parent 8721cba0ab
commit 63039f781f
+6 -6
View File
@@ -9,16 +9,16 @@ except(IOError, ImportError):
from setuptools import setup, find_packages from setuptools import setup, find_packages
setup( setup(
name="pycnc", name="pycnc",
version="1.1.0", version="2.0.1",
packages=find_packages(), packages=find_packages(),
scripts=['pycnc'], scripts=['pycnc'],
# metadata for upload to PyPI # metadata for upload to PyPI
author="Nikolay Khabarov", author="sinseman44",
author_email="2xl@mail.ru", author_email="sinseman44@gmail.com",
description="CNC machine controller", description="PiPlot2D machine controller",
long_description=long_description, long_description=long_description,
license="MIT", license="MIT",
keywords="CNC 3D printer robot raspberry pi", keywords="CNC 3D printer robot raspberry pi plotter2D",
url="https://github.com/Nikolay-Kha/PyCNC", url="https://github.com/sinseman44/PyCNC/tree/l293d",
) )