File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ before_install:
38
38
MYPIP=pip3;
39
39
MYPIPFLAGS="--user";
40
40
fi
41
- - MYMCREPO=https://repo.continuum.io /miniconda
41
+ - MYMCREPO=https://repo.anaconda.com /miniconda
42
42
- case ${TRAVIS_OS_NAME} in
43
43
linux)
44
44
MYMCBUNDLE=Miniconda3-latest-Linux-x86_64.sh ;;
@@ -60,7 +60,7 @@ before_install:
60
60
- $NOMC || popd
61
61
- $NOMC || source ~/mc/bin/activate base
62
62
- $NOMC || conda update --yes conda
63
- - $NOMC || conda install --yes conda-build jinja2
63
+ - $NOMC || conda install --yes conda-build conda-verify jinja2
64
64
- $NOMC || conda create --name=testenv --yes python=${MYPYTHON_VERSION} coverage
65
65
- $NOMC || conda config --add channels diffpy
66
66
Original file line number Diff line number Diff line change 2
2
:target: https://travis-ci.org/diffpy/diffpy.srfit
3
3
4
4
.. image :: https://codecov.io/gh/diffpy/diffpy.srfit/branch/master/graph/badge.svg
5
- :target: https://codecov.io/gh/diffpy/diffpy.srfit/branch/master
5
+ :target: https://codecov.io/gh/diffpy/diffpy.srfit
6
6
7
7
8
8
diffpy.srfit
Original file line number Diff line number Diff line change @@ -77,6 +77,9 @@ def getversioncfg():
77
77
78
78
versiondata = getversioncfg ()
79
79
80
+ with open (os .path .join (MYDIR , 'README.rst' )) as fp :
81
+ long_description = fp .read ()
82
+
80
83
# define distribution
81
84
setup_args = dict (
82
85
name = "diffpy.srfit" ,
@@ -92,6 +95,8 @@ def getversioncfg():
92
95
maintainer = "Pavol Juhas" ,
93
96
maintainer_email = "[email protected] " ,
94
97
description = "SrFit - Structure refinement from diffraction data" ,
98
+ long_description = long_description ,
99
+ long_description_content_type = 'text/x-rst' ,
95
100
license = 'BSD-style license' ,
96
101
url = "https://github.com/diffpy/diffpy.srfit" ,
97
102
keywords = "optimization constraints restraints structure refinement complex modeling" ,
You can’t perform that action at this time.
0 commit comments