-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 760 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup, find_packages
INFO = {'name': 'mecode',
'version': '0.4.1',
'description': 'Simple GCode generator',
'author': 'Jack Minardi',
'author_email': 'jack@minardi.org',
}
setup(
name=INFO['name'],
version=INFO['version'],
description=INFO['description'],
author=INFO['author'],
author_email=INFO['author_email'],
packages=find_packages(),
url='https://github.com/jminardi/mecode',
download_url='https://github.com/jminardi/mecode/tarball/master',
keywords=['gcode', '3dprinting', 'cnc', 'reprap', 'additive'],
zip_safe=False,
package_data = {
'': ['*.txt', '*.md'],
},
install_requires=[
'pyserial',
'numpy',
],
)