forked from python-trio/pytest-trio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (47 loc) · 1.73 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
49
50
from setuptools import setup, find_packages
exec(open("pytest_trio/_version.py", encoding="utf-8").read())
LONG_DESC = open("README.rst", encoding="utf-8").read()
setup(
name="pytest-trio",
version=__version__,
description="Pytest plugin for trio",
url="https://github.com/python-trio/pytest-trio",
long_description=open("README.rst").read(),
author="Emmanuel Leblond",
author_email="[email protected]",
license="MIT OR Apache-2.0",
packages=find_packages(),
entry_points={"pytest11": ["trio = pytest_trio.plugin"]},
install_requires=[
"trio >= 0.22.0", # for ExceptionGroup support
"outcome >= 1.1.0",
"pytest >= 7.2.0", # for ExceptionGroup support
],
keywords=[
"async",
"pytest",
"testing",
"trio",
],
python_requires=">=3.7",
classifiers=[
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: System :: Networking",
"Topic :: Software Development :: Testing",
"Framework :: Hypothesis",
"Framework :: Pytest",
"Framework :: Trio",
],
)