Skip to content

Commit b7408b4

Browse files
committed
Fixes for 0.2.0 release (#30)
1 parent 87e9ed4 commit b7408b4

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

MANIFEST.in

Lines changed: 0 additions & 1 deletion
This file was deleted.

pytest_jira.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
import pytest
1515
from jira.client import JIRA
1616

17-
__version__ = "0.1"
18-
1917

2018
class JiraHooks(object):
2119
issue_re = r"([A-Z]+-[0-9]+)"

setup.cfg

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,33 @@ author=James Laska
44
author_email=james.laska@gmail.com
55
summary=py.test JIRA integration plugin, using markers
66
description-file=README.md
7-
license=GPL
7+
license=GPLv2
88
home-page=http://github.com/rhevm-qe-automation/pytest_jira
99
keywords=
1010
pytest
1111
jira
1212
plugin
1313
classifier=
1414
Development Status :: 3 - Alpha
15+
Environment :: Plugins
16+
Framework :: Pytest
1517
Intended Audience :: Developers
16-
License :: OSI Approved :: GNU General Public License (GPL)
18+
License :: OSI Approved :: GNU General Public License v2 (GPLv2)
1719
Operating System :: POSIX
18-
Operating System :: Microsoft :: Windows
19-
Operating System :: MacOS :: MacOS X
20-
Topic :: Software Development :: Testing
21-
Topic :: Software Development :: Quality Assurance
22-
Topic :: Utilities
2320
Programming Language :: Python
21+
Programming Language :: Python :: 2
2422
Programming Language :: Python :: 2.6
2523
Programming Language :: Python :: 2.7
24+
Programming Language :: Python :: 3
25+
Programming Language :: Python :: 3.4
26+
Topic :: Software Development :: Testing
27+
Topic :: Software Development :: Quality Assurance
28+
Topic :: Utilities
2629
[entry_points]
2730
pytest11 =
2831
pytest_jira = pytest_jira
2932
[files]
3033
modules=
3134
pytest_jira
35+
[bdist_wheel]
36+
universal = 1

0 commit comments

Comments
 (0)