mirror of
https://github.com/sinseman44/PyCNC.git
synced 2026-01-12 02:40:04 +00:00
25 lines
628 B
Python
Executable File
25 lines
628 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
try:
|
|
import pypandoc
|
|
long_description = pypandoc.convert('README.md', 'rst')
|
|
except(IOError, ImportError):
|
|
long_description = open('README.md').read()
|
|
|
|
from setuptools import setup, find_packages
|
|
setup(
|
|
name="pycnc",
|
|
version="0.1.2",
|
|
packages=find_packages(),
|
|
scripts=['pycnc'],
|
|
|
|
# metadata for upload to PyPI
|
|
author="Nikolay Khabarov",
|
|
author_email="2xl@mail.ru",
|
|
description="CNC machine controller",
|
|
long_description=long_description,
|
|
license="MIT",
|
|
keywords="CNC 3D printer robot raspberry pi",
|
|
url="https://github.com/Nikolay-Kha/PyCNC",
|
|
)
|