-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
45 lines (41 loc) · 1.4 KB
/
pyproject.toml
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
[project]
name = "slipcover"
description = "Near Zero-Overhead Python Code Coverage"
keywords = ['coverage', 'testing']
dynamic = ["readme", "version"]
authors = [
{ name="Juan Altmayer Pizzorno", email="[email protected]" },
{ name="Emery Berger", email="[email protected]" }
]
classifiers = [
"Programming Language :: Python :: 3.8",
"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",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows :: Windows 10"
]
requires-python = ">=3.8,<3.14"
dependencies = [
"tabulate"
]
[project.scripts]
slipcover = "slipcover.__main__:main"
[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"