-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 842 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
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
with open("./README.md") as f:
long_description = f.read()
setup(
name="pytest-github-actions-annotate-failures",
version="0.1.3",
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",],
)