File tree 3 files changed +17
-5
lines changed
3 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
---------
3
3
4
+ v1.0.6
5
+ ======
6
+
7
+ * added `to_dict ` keyword argument to solvers.
8
+ * Improved doctests
9
+ * Added latex equations to ReadTheDocs documentation
10
+ * Added examples to ReadTheDocs documentation
11
+ * Added linkcode resolve to documentation
12
+
13
+
4
14
v1.0.5
5
15
======
6
16
Original file line number Diff line number Diff line change 1
- __version__ = "1.0.5 "
1
+ __version__ = "1.0.6 "
Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
import os
3
3
4
+ def readme ():
5
+ with open ('README.md' ) as f :
6
+ return f .read ()
7
+
4
8
here = os .path .dirname (os .path .abspath (__file__ ))
5
9
version_ns = {}
6
10
with open (os .path .join (here , 'pygasflow' , '_version.py' )) as f :
7
11
exec (f .read (), {}, version_ns )
8
12
9
- def readme ():
10
- with open ('README.md' ) as f :
11
- return f .read ()
12
-
13
13
setup (
14
14
name = 'pygasflow' ,
15
15
version = version_ns ["__version__" ],
16
16
description = 'Ideal Gasdynamics utilities for Python 3.6+' ,
17
17
long_description = readme (),
18
+ long_description_content_type = "text/markdown" ,
18
19
classifiers = [
20
+ 'Development Status :: 5 - Production/Stable' ,
19
21
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)' ,
20
22
'Programming Language :: Python :: 3.9' ,
21
23
"Topic :: Scientific/Engineering" ,
You can’t perform that action at this time.
0 commit comments