mirror of
https://git.mirrors.martin98.com/https://github.com/petaflot/pygcode
synced 2025-04-22 05:40:07 +08:00
14 lines
447 B
Python
14 lines
447 B
Python
from distutils.core import setup
|
|
setup(
|
|
name = 'pygcode',
|
|
packages = ['pygcode'],
|
|
version = '0.1',
|
|
description = 'basic g-code parser, interpreter, and writer library',
|
|
author = 'Peter Boin',
|
|
author_email = 'peter.boin@gmail.com',
|
|
url = 'https://github.com/fragmuffin/pygcode',
|
|
download_url = 'https://github.com/fragmuffin/pygcode/archive/0.1.tar.gz',
|
|
keywords = ['gcode', 'cnc', 'parser', 'interpreter'],
|
|
classifiers = [],
|
|
)
|