-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
46 lines (43 loc) · 2.11 KB
/
setup.cfg
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
[metadata]
name = meteoroid-cli
version = 1.0.2
url = http://github.com/OkinawaOpenLaboratory/fiware-meteoroid-cli
summary = CLI Client app for Meteoroid which is one of FIWARE components
author = Okinawa Open Laboratory
author-email = [email protected]
maintainer = Okinawa Open Laboratory
maintainer-email = [email protected]
description-file = README.rst
license = AGPL v3
classifiers =
Environment :: Console
Natural Language :: English
Natural Language :: Japanese
Programming Language :: Python :: 3.8
License :: OSI Approved :: GNU Affero General Public License v3
[files]
packages =
meteoroid_cli
[entry_points]
console_scripts =
meteoroid = meteoroid_cli.main:main
meteoroid.command =
schedule_create = meteoroid_cli.meteoroid.v1.schedule:ScheduleCreate
schedule_show = meteoroid_cli.meteoroid.v1.schedule:ScheduleShow
schedule_list = meteoroid_cli.meteoroid.v1.schedule:ScheduleList
schedule_delete = meteoroid_cli.meteoroid.v1.schedule:ScheduleDelete
endpoint_create = meteoroid_cli.meteoroid.v1.endpoint:EndpointCreate
endpoint_show = meteoroid_cli.meteoroid.v1.endpoint:EndpointShow
endpoint_list = meteoroid_cli.meteoroid.v1.endpoint:EndpointList
endpoint_delete = meteoroid_cli.meteoroid.v1.endpoint:EndpointDelete
subscription_create = meteoroid_cli.meteoroid.v1.subscription:SubscriptionCreate
subscription_show = meteoroid_cli.meteoroid.v1.subscription:SubscriptionShow
subscription_list = meteoroid_cli.meteoroid.v1.subscription:SubscriptionList
subscription_delete = meteoroid_cli.meteoroid.v1.subscription:SubscriptionDelete
result_show = meteoroid_cli.meteoroid.v1.result:ResultShow
result_list = meteoroid_cli.meteoroid.v1.result:ResultList
function_show = meteoroid_cli.meteoroid.v1.function:FunctionShow
function_list = meteoroid_cli.meteoroid.v1.function:FunctionList
function_create = meteoroid_cli.meteoroid.v1.function:FunctionCreate
function_update= meteoroid_cli.meteoroid.v1.function:FunctionUpdate
function_delete= meteoroid_cli.meteoroid.v1.function:FunctionDelete