-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·70 lines (64 loc) · 1.92 KB
/
setup.py
File metadata and controls
executable file
·70 lines (64 loc) · 1.92 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright 2020-2021 by Murray Altheim. All rights reserved. This file is part
# of the Robot Operating System project, released under the MIT License. Please
# see the LICENSE file included as part of this package.
#
# author: Murray Altheim
# created: 2019-12-23
# modified: 2020-03-12
#
# See: https://setuptools.readthedocs.io/en/latest/userguide/index.html
# https://setuptools.readthedocs.io/en/latest/userguide/quickstart.html
#
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
setup(
name='ros',
version='0.0.7', # Use bumpversion!
description="Robot Operating System - Core, K-Series Robots",
long_description=long_description,
author='Ichiro Furusato',
author_email='[email protected]',
packages=['ros'],
include_package_data=True,
install_requires=[
'numpy',
'colorama',
'pytest',
'pyyaml',
'psutil',
'gpiozero',
'board',
'readchar',
'pyquaternion'
],
zip_safe=False,
url='https://github.com/ifurusato/ros',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: MIT License',
'Operating System :: Other OS',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Topic :: Robot Framework',
'Topic :: Robot Framework :: Library',
'Topic :: Robot Framework :: Tool',
],
)
# future requries:
# 'rpi.gpio', \
# 'adafruit-extended-bus', \
# 'pymessagebus==1.*', \
# 'ht0740', \
# 'pimoroni-ioexpander', \
# 'adafruit-circuitpython-bno08x', \
# 'matrix11x7', \
# 'rgbmatrix5x5', \