File tree Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 5
5
/devutils export-ignore
6
6
/doc export-ignore
7
7
.gitarchive.cfg export-subst
8
+ * .bat text eol =crlf
Original file line number Diff line number Diff line change 1
- # Use container-based travis workers
2
- sudo : false
3
-
4
1
language : generic
5
2
6
3
os :
@@ -46,7 +43,7 @@ before_install:
46
43
MYPIP=pip3;
47
44
MYPIPFLAGS="--user";
48
45
fi
49
- - MYMCREPO=https://repo.continuum.io /miniconda
46
+ - MYMCREPO=https://repo.anaconda.com /miniconda
50
47
- case ${TRAVIS_OS_NAME} in
51
48
linux)
52
49
MYMCBUNDLE=Miniconda3-latest-Linux-x86_64.sh ;;
@@ -68,7 +65,7 @@ before_install:
68
65
- $NOMC || popd
69
66
- $NOMC || source ~/mc/bin/activate base
70
67
- $NOMC || conda update --yes conda
71
- - $NOMC || conda install --yes conda-build jinja2
68
+ - $NOMC || conda install --yes conda-build conda-verify jinja2
72
69
- $NOMC || conda create --name=testenv --yes python=${MYPYTHON_VERSION} coverage
73
70
74
71
- $NOAPT || test "${TRAVIS_OS_NAME}" = "linux" || exit $?
Original file line number Diff line number Diff line change 1
1
.. image :: https://travis-ci.org/diffpy/diffpy.utils.svg?branch=master
2
2
:target: https://travis-ci.org/diffpy/diffpy.utils
3
3
4
- .. image :: http ://codecov.io/github /diffpy/diffpy.utils/coverage.svg? branch= master
5
- :target: http ://codecov.io/github /diffpy/diffpy.utils?branch=master
4
+ .. image :: https ://codecov.io/gh /diffpy/diffpy.utils/branch/ master/graph/badge.svg
5
+ :target: https ://codecov.io/gh /diffpy/diffpy.utils
6
6
7
7
8
8
diffpy.utils
Original file line number Diff line number Diff line change @@ -76,6 +76,9 @@ def getversioncfg():
76
76
77
77
versiondata = getversioncfg ()
78
78
79
+ with open (os .path .join (MYDIR , 'README.rst' )) as fp :
80
+ long_description = fp .read ()
81
+
79
82
# define distribution
80
83
setup_args = dict (
81
84
name = "diffpy.utils" ,
@@ -90,6 +93,8 @@ def getversioncfg():
90
93
maintainer = 'Pavol Juhas' ,
91
94
maintainer_email = '[email protected] ' ,
92
95
description = "Shared utilities for diffpy packages." ,
96
+ long_description = long_description ,
97
+ long_description_content_type = 'text/x-rst' ,
93
98
license = 'BSD-style license' ,
94
99
url = "https://github.com/diffpy/diffpy.utils/" ,
95
100
keywords = "text data parsers wx grid" ,
You can’t perform that action at this time.
0 commit comments