install script

This commit is contained in:
Nikolay Khabarov
2017-05-13 04:16:10 +03:00
parent 1391b03724
commit 789e2d3e86
2 changed files with 20 additions and 0 deletions

3
.gitignore vendored
View File

@@ -5,3 +5,6 @@ workspace.xml
tasks.xml
.idea/dictionaries
pycnc.tar.bz2
build
*.egg-info/
dist/

17
setup.py Executable file
View File

@@ -0,0 +1,17 @@
#!/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",
)