-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (32 loc) · 1.11 KB
/
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
29
30
31
32
33
import setuptools
setuptools.setup(
name="pytest-run-changed",
version="1.0.1",
url="https://github.com/moser/pytest-run-changed",
author="Martin Vielsmaier",
author_email="moser@moserei.de",
description="Pytest plugin that runs changed tests only",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
keywords=[],
packages=["pytest_run_changed"],
install_requires=["pytest"],
setup_requires=["pytest-runner"],
tests_require=[],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
entry_points={
"pytest11": ["notifier = pytest_run_changed"],
},
)