File tree Expand file tree Collapse file tree 4 files changed +37
-7
lines changed Expand file tree Collapse file tree 4 files changed +37
-7
lines changed Original file line number Diff line number Diff line change
1
+ doc-warnings : true
2
+ test-warnings : true
3
+ max-line-length : 120
4
+ ignore-paths :
5
+ - doc
6
+ python-targets :
7
+ - 3
Original file line number Diff line number Diff line change 2
2
Readme pyndl
3
3
============
4
4
5
- .. image :: https://travis-ci.com/dekuenstle/pyndl.svg?token=nAo9MxVBWCT7YyFRxEP4&branch=master
6
- :target: https://travis-ci.com/dekuenstle/pyndl
5
+ .. image :: https://api.travis-ci.org/quantling/pyndl.svg
6
+ :target: https://travis-ci.com/quantling/pyndl
7
+
8
+ .. image :: https://landscape.io/github/quantling/pyndl/master/landscape.svg?style=flat
9
+ :target: https://landscape.io/github/quantling/pyndl/master
10
+ :alt: Code Health
11
+
12
+ .. image :: https://coveralls.io/repos/github/quantling/pyndl/badge.svg?branch=master
13
+ :target: https://coveralls.io/github/quantling/pyndl?branch=master
14
+
15
+ .. image :: https://img.shields.io/pypi/pyversions/pyndl.svg
16
+ :target: https://pypi.python.org/pypi/pyndl/
17
+
18
+ .. image :: https://img.shields.io/github/license/quantling/pyndl.svg
19
+ :target: https://github.com/quantling/pyndl/blob/master/LICENSE.txt
20
+
21
+ .. image :: https://zenodo.org/badge/80022085.svg
22
+ :target: https://zenodo.org/badge/latestdoi/80022085
23
+
7
24
8
25
This python3 package is a collection of useful script in order to run tasks on
9
26
huge amounts of text file corpora. Especially, it allows to efficiently apply
@@ -144,5 +161,3 @@ weights file :
144
161
netCDF format is used to store these information along side with meta data,
145
162
which contains the learning parameters, the time needed to calculate the
146
163
weights, the version of the software used and other information.
147
-
148
-
Original file line number Diff line number Diff line change 1
1
__author__ = ('David-Elias Künstle, Lennard Schneider, '
2
2
'Konstantin Sering, Marc Weitz' )
3
3
__author_email__ = '[email protected] '
4
- __version__ = '0.2.2 '
4
+ __version__ = '0.2.3 '
5
5
__license__ = 'MIT'
6
6
__description__ = ('Naive discriminative learning implements learning and '
7
7
'classification models based on the Rescorla-Wagner equations.' )
Original file line number Diff line number Diff line change @@ -13,9 +13,17 @@ deps = pep8
13
13
commands = pep8 pyndl tests
14
14
15
15
[testenv:testcov]
16
+ usedevelop = True
17
+ passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
16
18
deps =
17
- pytest-cov
18
- commands = py.test --cov =pyndl tests
19
+ mock
20
+ pytest
21
+ pytest-runner
22
+ sh
23
+ coveralls
24
+ commands =
25
+ coverage run --source =pyndl setup.py test
26
+ coveralls
19
27
20
28
[testenv:lint]
21
29
deps = pylint
You can’t perform that action at this time.
0 commit comments