File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 1
1
import Logging
2
2
Logging. disable_logging (Logging. Warn)
3
3
4
+ using CondaPkg
5
+ using PythonCall
6
+ packages = keys (CondaPkg. current_packages ())
7
+ if ! (" rmg" in packages) && ! (" rmgmolecule" in packages)
8
+ CondaPkg. add (" rmgmolecule" ; version= " >=0.3.0" , channel= " mjohnson541" )
9
+ end
10
+ if ! (v " 3.7" <= PythonCall. C. python_version () && PythonCall. C. python_version () <= v " 3.9" )
11
+ CondaPkg. add (" python" ; version= " 3.9" )
12
+ end
13
+ if ! (" matplotlib" in packages)
14
+ CondaPkg. add (" matplotlib" )
15
+ end
16
+ if ! (" rdkit" in packages)
17
+ CondaPkg. add (" rdkit" )
18
+ end
19
+ if ! (" pydot" in packages)
20
+ CondaPkg. add (" pydot" )
21
+ end
22
+ const Pkg = Base. require (Base. PkgId (Base. UUID (" 44cfe95a-1eb2-52ea-b672-e2afdf69b78f" ), " Pkg" ))
23
+ Pkg. build (" PythonCall" )
24
+
4
25
using Documenter, ReactionMechanismSimulator
5
26
6
27
makedocs (
You can’t perform that action at this time.
0 commit comments