Skip to content

Commit 8fcacaa

Browse files
authored
change version and add description (fixes #9 via #55)
* change version and add description * delete long desciption placeholders * add keywords * fix keywords * sic! )
1 parent 21eba47 commit 8fcacaa

File tree

2 files changed

+39
-9
lines changed

2 files changed

+39
-9
lines changed

allure-pytest/setup.py

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,36 @@
11
from setuptools import setup
22

3-
PACKAGE = "pytest-allure-adaptor"
4-
VERSION = "2.0.4"
3+
PACKAGE = "allure-pytest"
4+
VERSION = "2.0.0b1"
5+
6+
classifiers = [
7+
'Development Status :: 4 - Beta',
8+
'Framework :: Pytest',
9+
'Intended Audience :: Developers',
10+
'License :: OSI Approved :: Apache Software License',
11+
'Topic :: Software Development :: Quality Assurance'
12+
'Topic :: Software Development :: Testing',
13+
]
514

615
install_requires = [
716
"pytest>=2.7.3",
8-
"allure-python-commons==2.0.4"
17+
"allure-python-commons==2.0.0b1"
918
]
1019

1120
def main():
1221
setup(
1322
name=PACKAGE,
1423
version=VERSION,
15-
packages=['allure'],
16-
package_dir={'allure': 'src/allure'},
17-
entry_points={'pytest11': ['allure_adaptor = allure.pytest_plugin']},
24+
description="Common module for integrate allure with python-based frameworks",
25+
url="https://github.com/allure-framework/allure-python2",
26+
author="QAMetaSoftware, Stanislav Seliverstov",
27+
author_email="[email protected]",
28+
license="Apache-2.0",
29+
classifiers=classifiers,
30+
keywords="allure reporting pytest",
31+
packages=["allure"],
32+
package_dir={"allure": "src/allure"},
33+
entry_points={"pytest11": ["allure_pytest = allure.pytest_plugin"]},
1834
install_requires=install_requires
1935
)
2036

allure-python-commons/setup.py

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,15 @@
22
from setuptools import setup
33

44
PACKAGE = "allure-python-commons"
5-
VERSION = "2.0.4"
5+
VERSION = "2.0.0b1"
66

7+
classifiers = [
8+
'Development Status :: 4 - Beta',
9+
'Intended Audience :: Developers',
10+
'License :: OSI Approved :: Apache Software License',
11+
'Topic :: Software Development :: Quality Assurance'
12+
'Topic :: Software Development :: Testing',
13+
]
714

815
install_requires = [
916
"attrs>=16.0.0",
@@ -17,8 +24,15 @@ def main():
1724
setup(
1825
name=PACKAGE,
1926
version=VERSION,
20-
packages=['allure_commons'],
21-
package_dir={'allure_commons': 'src'},
27+
description="Common module for integrate allure with python-based frameworks",
28+
url="https://github.com/allure-framework/allure-python2",
29+
author="QAMetaSoftware, Stanislav Seliverstov",
30+
author_email="[email protected]",
31+
license="Apache-2.0",
32+
classifiers=classifiers,
33+
keywords="allure reporting report-engine",
34+
packages=["allure_commons"],
35+
package_dir={"allure_commons": "src"},
2236
install_requires=install_requires
2337
)
2438

0 commit comments

Comments
 (0)