We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 101a120 + 9335873 commit 9cf673aCopy full SHA for 9cf673a
setup.py
@@ -5,7 +5,7 @@
5
6
setup(
7
name="testcato",
8
- version="1.1.9",
+ version="1.2.0",
9
packages=find_packages(),
10
description="A package for categorizing test results.",
11
long_description=long_description,
@@ -14,4 +14,9 @@
14
author_email="anuragsinha003@gmail.com",
15
license="MIT",
16
install_requires=[],
17
+ entry_points={
18
+ "pytest11": [
19
+ "testcato = testcato.pytest_testcato",
20
+ ],
21
+ },
22
)
testcato/__init__.py
@@ -1,7 +1,7 @@
1
2
# Package metadata for wheel
3
__title__ = "testcato"
4
-__version__ = "1.1.9"
+__version__ = "1.2.0"
# Automatically create config file if not present
import os
0 commit comments