Files
PyCNC/setup.py
Nikolay Khabarov 789e2d3e86 install script
2017-05-13 04:16:10 +03:00

17 lines
422 B
Python
Executable File

#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="pycnc",
version="0.1",
packages=find_packages(),
scripts=['pycnc'],
# metadata for upload to PyPI
author="Nikolay Khabarov",
author_email="2xl@mail.ru",
description="CNC machine controller",
license="MIT",
keywords="CNC 3D printer robot raspberry pi",
url="https://github.com/Nikolay-Kha/PyCNC",
)