Skip to content

Commit 74189a3

Browse files
authored
Merge pull request #7 from oujago/develop
integrate auto test development tools
2 parents 5bb4741 + eede1b4 commit 74189a3

29 files changed

+322
-649
lines changed

.coveragerc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[run]
2+
omit = test/*

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ __pycache__/
55
*.py[cod]
66
*$py.class
77

8-
8+
.pypirc
99
.idea
1010
docs/_build/*
1111

.travis.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
language: python
2+
sudo: false
3+
python:
4+
- "3.3"
5+
- "3.4"
6+
- "3.5"
7+
- "3.6"
8+
- "pypy3"
9+
addons:
10+
apt:
11+
packages:
12+
- libblas-dev
13+
- liblapack-dev
14+
before_install:
15+
- pip install -U pip
16+
install:
17+
- travis_wait travis_retry pip install -r requirements.txt
18+
- travis_retry pip install python-coveralls
19+
- travis_retry python setup.py install
20+
script: py.test --runslow --cov-config=.coveragerc
21+
after_success:
22+
- coveralls

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Changelog
2+
---------
3+
4+
0.1 (2017-04-11)
5+
~~~~~~~~~~~~~~~~
6+
7+
First release.

MANIFEST.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# misc
2+
include LICENSE
3+
include requirements.txt
4+
include CHANGES.rst

README.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
55
:target: https://github.com/oujago/NumpyDL/blob/master/LICENSE
66

77

8+
.. image:: https://travis-ci.org/Lasagne/Lasagne.svg
9+
:target: https://travis-ci.org/oujago/NumpyDL
10+
11+
.. image:: https://img.shields.io/coveralls/Lasagne/Lasagne.svg
12+
:target: https://coveralls.io/r/oujago/NumpyDL
13+
14+
.. image:: https://zenodo.org/badge/16974/Lasagne/Lasagne.svg
15+
:target: https://zenodo.org/badge/latestdoi/16974/oujago/NumpyDL
816

917

1018

@@ -91,7 +99,7 @@ Install NumpyDL using pip:
9199

92100
.. code-block:: bash
93101
94-
$> pip install numpydl
102+
$> pip install npdl
95103
96104
Install from source code:
97105

File renamed without changes.
File renamed without changes.
File renamed without changes.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def find_source():
193193
if domain != 'py' or not info['module']:
194194
return None
195195
try:
196-
filename = 'numpydl/%s#L%d-L%d' % find_source()
196+
filename = 'npdl/%s#L%d-L%d' % find_source()
197197
except Exception:
198198
filename = info['module'].replace('.', '/') + '.py'
199199
tag = 'master' if 'dev' in release else ('v' + release)

0 commit comments

Comments
 (0)