published to PyPi

This commit is contained in:
Nikolay Khabarov
2017-05-14 18:02:20 +03:00
parent c0087d4fe1
commit 7b9b67f575
4 changed files with 21 additions and 3 deletions

View File

@@ -1,9 +1,15 @@
#!/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",
version="0.1.2",
packages=find_packages(),
scripts=['pycnc'],
@@ -11,7 +17,8 @@ setup(
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",
)
)