-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 845 Bytes
/
setup.py
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
from setuptools import setup, find_packages
with open("./README.md") as f:
long_description = f.read()
setup(
name="pytest-github-actions-annotate-failures",
version="0.0.7",
description="pytest plugin to annotate failed tests with a workflow command for GitHub Actions",
long_description=long_description,
long_description_content_type="text/markdown",
author="utgwkk",
author_email="[email protected]",
url="https://github.com/utgwkk/pytest-github-actions-annotate-failures",
license="MIT",
classifiers=[
"Framework :: Pytest",
],
packages=find_packages(),
entry_points={
"pytest11": [
"pytest_github_actions_annotate_failures = pytest_github_actions_annotate_failures.plugin",
],
},
install_requires=[
"pytest>=4.0.0",
],
)