-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
93 lines (84 loc) · 2.01 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[project]
name = "asv"
description = "Airspeed Velocity: A simple Python history benchmarking tool"
readme = { file = "README.rst", content-type = "text/x-rst" }
license = { text = "BSD-3-Clause" }
requires-python = ">=3.7"
authors = [
{ name = "Michael Droettboom", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Topic :: Software Development :: Testing",
]
dynamic = [
"version",
]
[project.urls]
"Source Code" = "https://github.com/airspeed-velocity/asv"
Documentation = "https://asv.readthedocs.io/en/stable/"
[project.scripts]
asv = "asv.__main__:main"
[project.optional-dependencies]
test = [
"pytest",
"pytest-xdist",
"pytest-timeout",
"pytest-rerunfailures>=10.0",
"filelock",
"virtualenv",
"numpy",
"scipy; platform_python_implementation != \"PyPy\"",
"feedparser",
"selenium",
"pytest-rerunfailures",
"python-hglib",
"json5",
"pympler; platform_python_implementation != \"PyPy\"",
]
doc = [
"sphinx",
"sphinx_bootstrap_theme",
]
dev = [
"flake8",
"isort >= 5.11.5",
]
hg = [
"python-hglib",
]
[build-system]
requires = [
"wheel",
"setuptools>=61.2",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
platforms = [
"any",
]
zip-safe = false
include-package-data = true
license-files = [
"LICENSE.rst",
]
[tool.setuptools.packages.find]
namespaces = false
[tool.pytest.ini_options]
addopts = "-p no:logging"
[tool.isort]
line_length = 99
only_sections = true
[tool.setuptools_scm]
write_to = "asv/_version.py"