@@ -27,10 +27,11 @@ def load_version():
27
27
description = "Python Battery Mathematical Modelling." ,
28
28
long_description = readme ,
29
29
url = "https://github.com/pybamm-team/PyBaMM" ,
30
- # include_package_data=True,
30
+ include_package_data = True ,
31
31
packages = find_packages (include = ("pybamm" , "pybamm.*" )),
32
32
package_data = {
33
33
"pybamm" : [
34
+ "./version" ,
34
35
"../input/parameters/lithium-ion/*.csv" ,
35
36
"../input/parameters/lithium-ion/*.py" ,
36
37
"../input/parameters/lead-acid/*.csv" ,
@@ -46,6 +47,7 @@ def load_version():
46
47
"autograd>=1.2" ,
47
48
"scikit-fem>=0.2.0" ,
48
49
"casadi>=3.5.0" ,
50
+ "jupyter" , # For example notebooks
49
51
# Note: Matplotlib is loaded for debug plots, but to ensure pybamm runs
50
52
# on systems without an attached display, it should never be imported
51
53
# outside of plot() methods.
@@ -57,7 +59,6 @@ def load_version():
57
59
"dev" : [
58
60
"flake8>=3" , # For code style checking
59
61
"black" , # For code style auto-formatting
60
- "jupyter" , # For documentation and testing
61
62
],
62
63
},
63
64
)
0 commit comments