blob: 8174720d73c817cfcaea6ffe4aea54fd2f09eba4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
[metadata]
name = testapi-client
[global]
setup-hooks =
pbr.hooks.setup_hook
[files]
packages =
testapiclient
data_files =
/etc/testapiclient = etc/config.ini
[entry_points]
console_scripts =
testapi = testapiclient.main:main
testapi =
auth = testapiclient.auth:Auth
pod create = testapiclient.pods:PodCreate
pod get = testapiclient.pods:PodGet
pod delete = testapiclient.pods:PodDelete
pod getone = testapiclient.pods:PodGetOne
project create = testapiclient.projects:ProjectCreate
project get = testapiclient.projects:ProjectGet
project getone = testapiclient.projects:ProjectGetOne
project delete = testapiclient.projects:ProjectDelete
project put = testapiclient.projects:ProjectPut
testcase create = testapiclient.testcase:TestCaseCreate
testcase get = testapiclient.testcase:TestCaseGet
testcase delete = testapiclient.testcase:TestCaseDelete
testcase put = testapiclient.testcase:TestCasePut
scenario create = testapiclient.scenario:ScenarioCreate
scenario get = testapiclient.scenario:ScenarioGet
scenario delete = testapiclient.scenario:ScenarioDelete
scenario put = testapiclient.scenario:ScenarioPut
scenario addscore = testapiclient.scenario:ScenarioAddScore
scenario addyi = testapiclient.scenario:ScenarioAddTI
scenario addcustom = testapiclient.scenario:ScenarioAddCustom
scenario updatecustom = testapiclient.scenario:ScenarioUpdateCustom
scenario deletecustom = testapiclient.scenario:ScenarioDeleteCustom
scenario addproject = testapiclient.scenario:ScenarioAddProject
scenario deleteproject = testapiclient.scenario:ScenarioDeleteProject
scenario addversion = testapiclient.scenario:ScenarioAddVersion
scenario deleteversion = testapiclient.scenario:ScenarioDeleteVersion
result get = testapiclient.results:ResultGet
[egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0
|