mirror of
https://github.com/sinseman44/PyCNC.git
synced 2026-01-12 02:40:04 +00:00
install script
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -5,3 +5,6 @@ workspace.xml
|
||||
tasks.xml
|
||||
.idea/dictionaries
|
||||
pycnc.tar.bz2
|
||||
build
|
||||
*.egg-info/
|
||||
dist/
|
||||
|
||||
17
setup.py
Executable file
17
setup.py
Executable 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",
|
||||
)
|
||||
Reference in New Issue
Block a user