0
|
1 <?xml version='1.0' encoding='utf-8'?>
|
|
2 <tool_dependency>
|
|
3 <package name="beautifulsoup4" version="4.1.0">
|
|
4 <readme>
|
|
5 This Galaxy Tool shed package installs python-bs4(http://www.crummy.com/software/BeautifulSoup/bs4/doc)
|
|
6 package.
|
|
7
|
|
8 The corresponding PYTHONPATH is accessible via PYTHONPATH_BEAUTIFULSOUP4
|
|
9
|
|
10 Developmental version is hosted on Github: https://github.com/saketkc/galaxy_tools/packages/package_beautifulsoup4_4_1_0/
|
|
11 </readme>
|
|
12 <install version="1.0">
|
|
13 <actions>
|
|
14 <action type="download_by_url">http://www.crummy.com/software/BeautifulSoup/bs4/download/4.0/beautifulsoup4-4.1.0.tar.gz</action>
|
|
15 <action type="make_directory">$INSTALL_DIR/lib/python</action>
|
|
16 <action type="shell_command">
|
|
17 export PYTHONPATH=$PYTHONPATH:$INSTALL_DIR/lib/python &&
|
|
18 python setup.py install --install-lib $INSTALL_DIR/lib/python
|
|
19 </action>
|
|
20 <action type="set_environment">
|
|
21 <environment_variable action="append_to" name="PYTHONPATH">$INSTALL_DIR/lib/python</environment_variable>
|
|
22 <environment_variable action="set_to" name="PYTHONPATH_BEAUTIFULSOUP4">$INSTALL_DIR/lib/python</environment_variable>
|
|
23 </action>
|
|
24 </actions>
|
|
25 </install>
|
|
26 </package>
|
|
27 </tool_dependency>
|
|
28
|
|
29
|
|
30
|
|
31
|