Skip to content

Commit ec309cd

Browse files
committed
updates for v1.2
1 parent dcf9e63 commit ec309cd

File tree

3 files changed

+43
-11
lines changed

3 files changed

+43
-11
lines changed

LICENSE.txt

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Copyright 2017 Native Design Ltd
2+
3+
Permission is hereby granted, free of charge, to any person
4+
obtaining a copy of this software and associated documentation
5+
files (the "Software"), to deal in the Software without
6+
restriction, including without limitation the rights to use,
7+
copy, modify, merge, publish, distribute, sublicense, and/or
8+
sell copies of the Software, and to permit persons to whom
9+
the Software is furnished to do so, subject to the following
10+
conditions:
11+
12+
The above copyright notice and this permission notice shall be
13+
included in all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

+19-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
11
from setuptools import setup
22

33
setup(name='TMCL',
4-
version='1.1.2',
5-
description='Talk to Trinamic Stepper Motors using TMCL over serial',
6-
url='https://github.com/NativeDesign/python-tmcl',
7-
author='Alan Pich',
8-
author_email='[email protected]',
9-
license='MIT',
10-
packages=['TMCL'],
11-
install_requires=[
12-
'pyserial'
13-
],
14-
zip_safe=False)
4+
version='1.2',
5+
description='Talk to Trinamic Stepper Motors using TMCL over serial',
6+
url='https://github.com/NativeDesign/python-tmcl',
7+
author='Alan Pich',
8+
author_email='[email protected]',
9+
license='MIT',
10+
packages=['TMCL'],
11+
install_requires=[
12+
'pyserial'
13+
],
14+
keywords = [
15+
'tmcl',
16+
'trinamic',
17+
'rs485',
18+
'stepper',
19+
'motor',
20+
'tmcm'
21+
],
22+
zip_safe=False)

0 commit comments

Comments
 (0)