-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (50 loc) · 1.6 KB
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
51
52
53
54
55
56
[project]
name = "slipcover"
description = "Near Zero-Overhead Python Code Coverage"
keywords = ['coverage', 'testing']
dynamic = ["readme", "version"]
authors = [
{ name="Juan Altmayer Pizzorno", email="juan@altmayer.com" },
{ name="Emery Berger", email="emery.berger@gmail.com" }
]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows :: Windows 10"
]
requires-python = ">=3.9,<3.15"
dependencies = [
"tabulate",
"tomli; python_version < '3.11'"
]
[project.scripts]
slipcover = "slipcover.__main__:main"
[project.entry-points.pytest11]
slipcover = "slipcover.pytest_plugin"
[project.urls]
"Homepage" = "https://github.com/plasma-umass/slipcover"
"Repository" = "https://github.com/plasma-umass/slipcover"
[build-system]
# see https://peps.python.org/pep-0508/#environment-markers for conditional syntax
requires = [
"setuptools>61",
"setuptools<72.2; implementation_name == 'pypy'", # https://github.com/pypa/distutils/issues/283
"wheel",
"tomli; python_version < '3.11'" # tomllib alternative
]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-dir]
"" = "src"
[project.optional-dependencies]
test = [
'pytest',
'pytest-forked',
'pytest-xdist'
]