Ticket #7414: bundle_info.xml

File bundle_info.xml, 2.2 KB (added by gabsbi@…, 3 years ago)

Added by email2trac

Line 
1<!--
2ChimeraX bundle names must start with "ChimeraX-"
3to avoid clashes with package names in pypi.python.org.
4When uploaded to the ChimeraX toolshed, the bundle
5will be displayed without the ChimeraX- prefix.
6-->
7
8<BundleInfo name="ChimeraX-HelloWorld"
9 version="0.1" package="chimerax.hello_world"
10 minSessionVersion="1" maxSessionVersion="1">
11
12 <!-- Additional information about bundle source -->
13 <Author>UCSF RBVI</Author>
14 <Email>chimerax@cgl.ucsf.edu</Email>
15 <URL>https://www.rbvi.ucsf.edu/chimerax/</URL>
16
17 <!-- Synopsis is a one-line description
18 Description is a full multi-line description -->
19 <Synopsis>Basic example for adding a command</Synopsis>
20 <Description>Basic example code for implementing ChimeraX bundle.
21
22Implements command "hello" to print the string "hello world" in the log.
23 </Description>
24
25 <!-- Categories is a list where this bundle should appear -->
26 <Categories>
27 <Category name="General"/>
28 </Categories>
29
30 <!-- Dependencies on other ChimeraX/Python packages -->
31 <Dependencies>
32 <Dependency name="ChimeraX-Core" version="~=1.1"/>
33 </Dependencies>
34
35 <!-- Python and ChimeraX-specific classifiers
36 From https://pypi.python.org/pypi?%3Aaction=list_classifiers
37 Some Python classifiers are always inserted by the build process.
38 These include the Environment and Operating System classifiers
39 as well as:
40 Framework :: ChimeraX
41 Intended Audience :: Science/Research
42 Programming Language :: Python :: 3
43 Topic :: Scientific/Engineering :: Visualization
44 Topic :: Scientific/Engineering :: Chemistry
45 Topic :: Scientific/Engineering :: Bio-Informatics
46 The "ChimeraX :: Bundle" classifier is also supplied automatically. -->
47 <Classifiers>
48 <!-- Development Status should be compatible with bundle version number -->
49 <PythonClassifier>Development Status :: 3 - Alpha</PythonClassifier>
50 <PythonClassifier>License :: Freeware</PythonClassifier>
51 <!-- ChimeraX classifiers describe supplied functionality -->
52 <ChimeraXClassifier>ChimeraX :: Command :: hello :: General ::
53 Print "hello world" in the log</ChimeraXClassifier>
54 </Classifiers>
55
56</BundleInfo>