Skip to content

Commit 9cf673a

Browse files
authored
Merge pull request #22 from anurag03/ansinha/entrypoint
Updating entrypoint
2 parents 101a120 + 9335873 commit 9cf673a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="testcato",
8-
version="1.1.9",
8+
version="1.2.0",
99
packages=find_packages(),
1010
description="A package for categorizing test results.",
1111
long_description=long_description,
@@ -14,4 +14,9 @@
1414
author_email="anuragsinha003@gmail.com",
1515
license="MIT",
1616
install_requires=[],
17+
entry_points={
18+
"pytest11": [
19+
"testcato = testcato.pytest_testcato",
20+
],
21+
},
1722
)

testcato/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Package metadata for wheel
33
__title__ = "testcato"
4-
__version__ = "1.1.9"
4+
__version__ = "1.2.0"
55

66
# Automatically create config file if not present
77
import os

0 commit comments

Comments
 (0)