-
Notifications
You must be signed in to change notification settings - Fork 5
/
.nengobones.yml
160 lines (148 loc) · 4.17 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
project_name: NengoSPA
pkg_name: nengo_spa
repo_name: nengo/nengo-spa
description: An implementation of the Semantic Pointer Architecture for Nengo
copyright_start: 2013
license: gpl-v2
main_branch: main
contributing_rst: {}
contributors_rst: {}
license_rst: {}
manifest_in:
global-exclude:
- "*.swp" # exclude VIM swp files
ci_scripts:
- template: static
- template: test
pip_install:
- $NUMPY
- $SCIPY
- output_name: test-coverage
template: test
pip_install:
- $NUMPY
- $SCIPY
coverage: true
- output_name: test-coverage-no-scipy
template: test
pip_install:
- $NUMPY
coverage: true
- template: docs
pip_install:
- matplotlib
- $SCIPY
- template: deploy
wheel: true
setup_py:
include_package_data: True
install_req:
- nengo>=2.7
- numpy>=1.8
docs_req:
- jupyter
- matplotlib>=2.0
- nbsphinx>=0.8.11
- nengo_sphinx_theme
- numpydoc>=1.4.0
optional_req:
- scipy>=1.4.1
- scikit-learn
tests_req:
- jupyter>=1.0.0
- matplotlib>=2.0
- nbformat>=5.0.7
- pytest>=3.6
- pytest-plt
- pytest-rng
classifiers:
- "Development Status :: 5 - Production/Stable"
- "Framework :: Nengo"
- "Intended Audience :: Science/Research"
- "Operating System :: OS Independent"
- "Programming Language :: Python :: 3 :: Only"
- "Programming Language :: Python :: 3.6"
- "Programming Language :: Python :: 3.7"
- "Programming Language :: Python :: 3.8"
- "Programming Language :: Python :: 3.9"
- "Topic :: Scientific/Engineering :: Artificial Intelligence"
setup_cfg:
codespell:
ignore_words:
- ba
coverage:
exclude_lines:
- "# Don't complain if non-runnable code isn't run:"
- "if __name__ == .__main__.:"
omit_files:
- nengo_spa/conftest.py
pylint:
ignore:
- compat.py
disable:
# TODO: fix these and start checking for them
- abstract-method
- broad-except
- chained-comparison
- consider-using-f-string
- consider-using-in
- eval-used
- expression-not-assigned
- import-error
- import-outside-toplevel
- inconsistent-return-statements
- keyword-arg-before-vararg
- missing-class-docstring
- missing-function-docstring
- missing-module-docstring
- no-else-break
- no-self-argument
- not-callable
- pointless-statement
- raise-missing-from
- reimported
- super-with-arguments
- superfluous-parens
- too-many-public-methods
- undefined-variable
- unnecessary-dunder-call
- unnecessary-lambda-assignment
- unneeded-not
- unspecified-encoding
- unused-variable
- use-implicit-booleaness-not-comparison
pytest:
filterwarnings:
- ignore::ImportWarning
- ignore:(Buffer|Memory):DeprecationWarning
- ignore:IPython.core.inputsplitter is deprecated:DeprecationWarning
- ignore:Skipping some optimization steps
- ignore:SciPy is not installed
- ignore:numpy.(dtype|ufunc) size changed
docs_conf_py:
extensions:
- matplotlib.sphinxext.plot_directive
nengo_logo: nengo-spa-full-light.svg
nengo_logo_color: "#d40000"
html_redirects:
dev_syntax.html: dev-syntax.html
examples/associative_memory.html: examples/associative-memory.html
examples/custom_module.html: examples/custom-module.html
examples/intro_coming_from_legacy_spa.html: examples/intro-coming-from-legacy-spa.html
examples/question_control.html: examples/question-control.html
examples/question_memory.html: examples/question-memory.html
examples/spa_parser.html: examples/spa-parser.html
examples/spa_sequence_routed.html: examples/spa-sequence-routed.html
examples/spa_sequence.html: examples/spa-sequence.html
examples/vocabulary_casting.html: examples/vocabulary-casting.html
getting_started.html: getting-started.html
user_guide.html: user-guide.html
user_guide/algebras.html: user-guide/algebras.html
user_guide/spa_intro.html: user-guide/spa-intro.htm
pyproject_toml: {}
pre_commit_config_yaml: {}
version_py:
major: 2
minor: 0
patch: 1
release: false