-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (72 loc) · 2.16 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
[project]
name = "asv-runner"
description = "Run ASVs for a project."
authors = [
{ name = "Richard Shadrach", email = "[email protected]" },
]
keywords = [
'Benchmark',
'Performance',
'ASV',
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">= 3.8"
version = "0.0.1"
dependencies = ["pandas", "pyarrow"]
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'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',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Benchmarks',
]
[project.urls]
Documentation = "https://github.com/rhshadrach/asv-runner/tree/main#readme"
Source = "https://github.com/rhshadrach/asv-runner"
Tracker = "https://github.com/rhshadrach/asv-runner/issues"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
lint = ["pre-commit"]
test = ["pytest"]
dev = ["asv_runner[lint, test]"]
[tool.ruff.lint]
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
# McCabe complexity (`C901`) by default.
select = [
"A", # flake8-builtins
# "ANN", # flake8-annotations
"B", # flake8-bugbear
"C4", # flake8-comprehensions
# "D", # pydocstyle
"DOC", # pydoclint
"E", # pycodestyle - error
"F", # Pyflakes
"FA", # flake8-future-annotations
# "FBT", # flake8-boolean-trap
"G", # flake8-logging-format
"I", # isort
"INP", # flake8-no-pep420
"ISC", # flake8-implicit-str-concat
"LOG", # flake8-logging
"N", # pep8-naming
"PERF", # Perflint
"PIE", # flake8-pie
"PL", # Pylint
"Q", # flake8-quotes
"RUF", # Ruff-specific rules
"SIM", # flake8-simplify
"UP", # pyupgrade
"W", # pycodestyle - warning
"YTT", # flake8-2020
]