-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
37 lines (35 loc) · 1.45 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
[metadata]
name = artifact-pipeline
author = OpenStack Charmers
author_email = openstack-charmers@lists.launchpad.net
summary = Automation tools
description_file = README.md
description_content_type = text/x-markdown; charset=UTF-8
home_page = https://github.com/openstack-charmers/artifact-pipeline
project_urls =
Bug Tracker = https://bugs.launchpad.net/artifact-pipeline
Source Code = https://github.com/openstack-charmers/artifact-pipeline
license = Apache-2
classifier =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
keywords =
temporal
ci
[files]
packages =
artifact_pipeline
[entry_points]
console_scripts =
artifact-pipeline = artifact_pipeline.cmd:main
artifact-pipeline.worker-hello-world = artifact_pipeline.workers.hello_world:main
artifact-pipeline.workflow-hello-world = artifact_pipeline.workflows.hello_world:main
artifact-pipeline.backport-package-worker = artifact_pipeline.workers.backport_package:main
artifact-pipeline.backport-package-workflow = artifact_pipeline.workflows.backport_package:main
artifact-pipeline.backport-o-matic-worker = artifact_pipeline.workers.backport_o_matic:main
artifact-pipeline.backport-o-matic-workflow = artifact_pipeline.workflows.backport_o_matic:main