-
Notifications
You must be signed in to change notification settings - Fork 98
/
.nengobones.yml
111 lines (101 loc) · 2.24 KB
/
.nengobones.yml
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
project_name: ABR Control
pkg_name: abr_control
repo_name: abr/abr_control
min_python: 3.5
author_email: [email protected]
description: Robotic arm control in Python
copyright_start: 2017
license_rst: {
type: nengo
}
contributing_rst: {}
# contributors_rst: {}
setup_py:
url: https://github.com/abr/abr_control
install_req:
- cloudpickle>=0.8.0
- cython>=0.29.0
- matplotlib>=3.0.0
- numpy>=1.16.0
- setuptools>=18.0
- scipy>=1.1.0
- sympy>=1.3
tests_req:
- pytest>=4.4.0
- pytest-xdist>=1.26.0
- pytest-cov>=2.6.0
- pytest-plt
- coverage>=4.5.0
- nengo>=2.8.0
classifiers:
- "Development Status :: 5 - Production/Stable"
- "Framework :: ABR Control"
- "Intended Audience :: Science/Research"
- "Operating System :: OS Independent"
- "Programming Language :: Python :: 3 :: Only"
- "Programming Language :: Python :: 3.6"
- "Programming Language :: Python :: 3.7"
- "Topic :: Scientific/Engineering :: Artificial Intelligence"
setup_cfg:
codespell:
ignore_words:
- DOF
- dof
- hist
- nd
- compiletime
coverage:
omit_files:
- "abr_control/_vendor/*"
- "abr_control/interfaces/coppeliasim_files/*"
- "abr_control/arms/threejoint/arm_files/*"
flake8:
exclude:
- "abr_control/_vendor/*"
- "abr_control/interfaces/coppeliasim_files/*"
- "abr_control/arms/threejoint/arm_files/*"
- "abr_control/utils/transformations.py"
ignore:
- C901
- E402
- E722
pytest:
norecursedirs:
- examples
- _vendor
pylint:
ignore:
- _vendor
- arm_files
- coppeliasim_files
- transformations.py
disable:
- F0001
- C0116
- C0115
- C0114
- too-many-blank-lines
- W504
- W0621
- W0702
known_third_party:
- mpl_toolkits
- nengo
- nengolib
- scipy
travis_yml:
jobs:
- script: static
- script: test-coverage
test_args: --plots
pypi_user: tbekolay
deploy_dists:
- sdist
- bdist_wheel
ci_scripts:
- template: test
output_name: test-coverage
coverage: true
codecov_yml: {}
pre_commit_config_yaml: {}
pyproject_toml: {}