-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
55 lines (50 loc) · 1.71 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
47
48
49
50
51
52
53
54
55
[metadata]
name = jiractl
version = 0.0.1.dev
summary = The command line interface for Jira REST API
description-file = README.rst
author = Bulat Gaifullin
author_email = gaifullinbf@gmail.com
url = https://github.com/bgaifullin/python-jiractl.git
home-page = https://github.com/bgaifullin/python-jiractl.git
license = MIT
keywords = jira
classifier =
Development Status :: 4 - Beta
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Topic :: Utilities
[files]
packages =
jiractl
[entry_points]
console_scripts =
jiractl=jiractl.app:main
jiractl =
issue=jiractl.commands.issues:ShowIssue
issue_create=jiractl.commands.issues:CreateIssue
issue_edit=jiractl.commands.issues:EditIssue
issues=jiractl.commands.issues:ListIssues
issues_search=jiractl.commands.issues:SearchIssues
issue_comment=jiractl.commands.comments:ShowComment
issue_comment_edit=jiractl.commands.comments:EditComment
issue_comments=jiractl.commands.comments:ListComments
issue_comments_add=jiractl.commands.comments:AddComment
issue_labels=jiractl.commands.labels:ListLabels
issue_labels_add=jiractl.commands.labels:AddLabel
issue_labels_drop=jiractl.commands.labels:DropLabel
issue_link=jiractl.commands.links:ShowLink
issue_links=jiractl.commands.links:ListLinks
issue_links_add=jiractl.commands.links:AddLink
issue_links_drop=jiractl.commands.links:DropLink
[global]
setup-hooks =
pbr.hooks.setup_hook
setup_hooks.setup_hook
[aliases]
test=pytest