-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (41 loc) · 1.32 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from os.path import dirname, join
from setuptools import setup
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
with open("README.md", "r") as f:
readme = f.read()
def main():
setup(
name="pytest-aviator",
version="0.1.1",
license="MIT",
description="Aviator\'s Flakybot pytest plugin that automatically reruns flaky tests.",
long_description=readme,
long_description_content_type="text/markdown",
author="aviator-co",
author_email="[email protected]",
url="https://github.com/aviator-co/pytest-aviator",
entry_points={
"pytest11": [
"pytest-aviator = pytest_aviator.runner"
]
},
keywords="pytest plugin flaky tests rerun retry flakybot aviator",
python_requires=">=3.6",
classifiers=CLASSIFIERS,
install_requires=[
"pytest",
"requests"
]
)
if __name__ == "__main__":
main()