-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
executable file
·45 lines (40 loc) · 1.17 KB
/
setup.py
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python3
from setuptools import find_packages, setup
install_requires = [
# build
'setuptools',
# runtime
# 'python3-pigpio', # this is a apt repo, run sudo apt install python3-pigpio to make it work
'guizero'
]
tests_require = []
extras_require = {}
d = setup(
name='tripipy',
version='0.1.0', # also update package.xml and version.py
packages=find_packages(),
install_requires=install_requires,
extras_require=extras_require,
author='pootle',
maintainer='pootle',
url='https://github.com/pootle/tripipy',
keywords='tmc5130, tmc5160',
zip_safe=True,
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: Unlicense',
'Programming Language :: Python',
'Topic :: Engineering :: driver'
],
description="pythonic implementation of trinamic motor controllers",
long_description="This enables the control of TMC2130 and TMC5160.",
license='Unlicense',
test_suite='',
tests_require=tests_require,
entry_points={
'console_scripts': [
'tripipy-example = examples.motors2:main',
],
},
)