mirror of
https://github.com/sinseman44/PyCNC.git
synced 2026-07-17 08:46:55 +00:00
install script
This commit is contained in:
@@ -5,3 +5,6 @@ workspace.xml
|
|||||||
tasks.xml
|
tasks.xml
|
||||||
.idea/dictionaries
|
.idea/dictionaries
|
||||||
pycnc.tar.bz2
|
pycnc.tar.bz2
|
||||||
|
build
|
||||||
|
*.egg-info/
|
||||||
|
dist/
|
||||||
|
|||||||
@@ -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",
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user