File tree Expand file tree Collapse file tree 3 files changed +25
-22
lines changed Expand file tree Collapse file tree 3 files changed +25
-22
lines changed Original file line number Diff line number Diff line change @@ -4,23 +4,26 @@ dist: trusty
4
4
language : python
5
5
6
6
matrix :
7
- include :
8
- - os : linux
9
- python : " 2.7"
10
- env : COVERALLS=1
11
- - os : linux
12
- python : " 3.4"
13
- - os : linux
14
- python : " 3.5"
7
+ include :
8
+ - os : linux
9
+ python : " 2.7"
10
+ env : COVERALLS=1
11
+ - os : linux
12
+ python : " 3.4"
13
+ - os : linux
14
+ python : " 3.5"
15
15
16
- - os : osx
17
- language : generic
18
- env :
19
- - OSXENV=2.7
20
- - os : osx
21
- language : generic
22
- env :
23
- - OSXENV=3.5
16
+ - os : osx
17
+ language : generic
18
+ env :
19
+ - OSXENV=3.5
20
+ # Keep only one osx branch active for now
21
+ # since currently osx builds on travis
22
+ # are frequently stalled or indefinitely delayed.
23
+ # - os: osx
24
+ # language: generic
25
+ # env:
26
+ # - OSXENV=2.7
24
27
25
28
before_install :
26
29
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then bash resources/install_osx_virtualenv.sh; fi
Original file line number Diff line number Diff line change 1
- odML libraries and editor
2
- =========================
3
1
.. image :: https://travis-ci.org/G-Node/python-odml.svg?branch=master
4
2
:target: https://travis-ci.org/G-Node/python-odml
3
+ .. image :: https://ci.appveyor.com/api/projects/status/2wfvsu7boe18kwjy?svg=true
4
+ :target: https://ci.appveyor.com/project/mpsonntag/python-odml
5
5
.. image :: https://coveralls.io/repos/github/G-Node/python-odml/badge.svg?branch=master
6
6
:target: https://coveralls.io/github/G-Node/python-odml?branch=master
7
7
8
+ odML libraries and editor
9
+ =========================
10
+
8
11
Dependencies
9
12
------------
10
13
Original file line number Diff line number Diff line change 13
13
with open ('README.rst' ) as f :
14
14
description_text = f .read ()
15
15
16
- with open ("LICENSE" ) as f :
17
- license_text = f .read ()
18
-
19
16
install_req = ["lxml" , "pyyaml" ]
20
17
if sys .version_info < (3 , 4 ):
21
18
install_req += ["enum34" ]
32
29
install_requires = install_req ,
33
30
long_description = description_text ,
34
31
classifiers = CLASSIFIERS ,
35
- license = license_text
32
+ license = "BSD"
36
33
)
You can’t perform that action at this time.
0 commit comments