-
Notifications
You must be signed in to change notification settings - Fork 204
/
pyproject.toml
58 lines (52 loc) · 1.38 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sortedcontainers"
description = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set"
authors = [
{"name" = "Grant Jenks", "email" = "[email protected]"},
]
readme = "README.rst"
requires-python = ">=3.2"
license = {"text" = "Apache 2.0"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://grantjenks.com/docs/sortedcontainers/"
Source = "https://github.com/grantjenks/python-sortedcontainers"
Tracker = "https://github.com/grantjenks/python-sortedcontainers/issues"
[tool.setuptools.dynamic]
version = {attr = "sortedcontainers.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
format.quote-style = "single"
[tool.ruff.lint]
ignore = [
# E501 Line too long
"E501",
]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]