File tree 4 files changed +15
-9
lines changed
4 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 5
5
- " 3.4"
6
6
- " 3.5"
7
7
- " 3.6"
8
+ - " 3.7"
8
9
9
10
install :
10
11
- pip install -r requirements.txt
Original file line number Diff line number Diff line change @@ -39,19 +39,21 @@ The ``sphinx`` and ``numpy`` packages.
39
39
Installation
40
40
------------
41
41
42
- Using ``pip ``::
42
+ With ``pip ``::
43
43
44
44
pip install sphinx-fortran
45
45
46
+
47
+ With ``conda ``::
48
+
49
+ conda install -c vacumm -c conda-forge sphinx-fortran
50
+
46
51
From sources::
47
52
48
53
git clone https://github.com/VACUMM/sphinx-fortran.git
49
54
cd sphinx-fortran
50
55
python setup.py install
51
56
52
- You can download sources also from the forge at IFREMER:
53
- https://forge.ifremer.fr/frs/?group_id=93
54
-
55
57
56
58
Quick start
57
59
-----------
@@ -77,7 +79,7 @@ Authors
77
79
78
80
Stephane Raynaud (stephane.raynaud(at)gmail.com)
79
81
80
- Thanks: Thomas Gastine
82
+ Thanks: Thomas Gastine and other pull request contributors.
81
83
82
84
83
85
Documentation
Original file line number Diff line number Diff line change 7
7
# Version, etc
8
8
sys .path .insert (0 , 'sphinxfortran' )
9
9
from sphinxfortran import ( __version__ as version , __author__ as author ,
10
- __email__ as author_email )
10
+ __email__ as author_email , __date__ as date )
11
11
del sys .path [0 ]
12
12
13
13
# From files
25
25
license = "CeCiLL-A"
26
26
url = "http://sphinx-fortran.readthedocs.org"
27
27
classifiers = [
28
- "License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)" ,
28
+ ("License :: OSI Approved :: CEA CNRS Inria Logiciel "
29
+ "Libre License, version 2.1 (CeCILL-2.1)" ),
30
+ "Topic :: Scientific/Engineering" ,
29
31
"Programming Language :: Python :: 2.7" ,
30
32
"Programming Language :: Python :: 3.4" ,
31
33
"Programming Language :: Python :: 3.5" ,
32
34
"Programming Language :: Python :: 3.6" ,
33
35
]
34
36
35
-
36
37
if __name__ == '__main__' :
37
38
38
39
# Lauch setup
39
40
setup (name = 'sphinx-fortran' ,
40
41
version = version ,
42
+ date = date ,
41
43
description = description ,
42
44
long_description = long_description ,
43
45
author = author ,
Original file line number Diff line number Diff line change 36
36
# knowledge of the CeCILL license and that you accept its terms.
37
37
#
38
38
39
- __version__ = '1.1.0'
39
+ __version__ = '1.1.1'
40
+ __date__ = "2019-11-20"
40
41
__author__ = 'Stephane Raynaud'
41
42
42
43
__copyright__ = 'Copyright (c) 2010-2019 Actimar/IFREMER'
You can’t perform that action at this time.
0 commit comments