update setup.py

This commit is contained in:
sinseman44
2020-11-14 11:35:45 +00:00
parent 8721cba0ab
commit 63039f781f

View File

@@ -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",
)