-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.xml
More file actions
21 lines (21 loc) · 1.03 KB
/
package.xml
File metadata and controls
21 lines (21 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<Package Name="PSLab" xmlns="http://keysight.com/Schemas/tap" Version="$(GitVersion)" OS="Windows,Linux,MacOS">
<Description>This is the OpenTAP package containing instrument and test step plugins to interact with a PSLab board.</Description>
<Owner>Keysight Technologies, Inc.</Owner>
<SourceUrl>https://github.com/opentap/PSLab</SourceUrl>
<License>MIT</License>
<Dependencies>
<PackageDependency Package="OpenTAP"/>
<PackageDependency Package="Python" Version="^3.0.0"/>
</Dependencies>
<Files>
<File Path="Packages/PSLab/*.py" />
<File Path="Packages/PSLab/LICENSE" SourcePath="LICENSE" />
<File Path="Packages/PSLab/requirements.txt" SourcePath="requirements.txt" >
<PythonRequirements/> <!-- this defines pip dependencies -->
</File>
</Files>
<PackageActionExtensions>
<ActionStep ExeFile="tap" Arguments="python install-requirements" ActionName="install" />
</PackageActionExtensions>
</Package>