-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.82 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "portion"
version = "2.6.2-pre1"
license = "LGPL-3.0-or-later"
license-files = ["LICENSE.txt"]
authors = [{ name = "Alexandre Decan", email = "alexandre.decan@lexpage.net" }]
description = "Python data structure and operations for intervals"
readme = { file = "README.md", content-type = "text/markdown" }
keywords = ["interval", "interval-set", "range", "span"]
requires-python = ">= 3.9"
dependencies = ["sortedcontainers~=2.4"]
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Programming Language :: Python :: 3 :: Only",
"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",
]
[project.urls]
homepage = "https://github.com/AlexandreDecan/portion"
repository = "https://github.com/AlexandreDecan/portion"
changelog = "https://github.com/AlexandreDecan/portion/blob/master/CHANGELOG.md"
documentation = "https://github.com/AlexandreDecan/portion/blob/master/README.md"
issues = "https://github.com/AlexandreDecan/portion/issues"
funding = "https://github.com/sponsors/AlexandreDecan"
[dependency-groups]
dev = ["pytest>=8.4.2", "pytest-cov>=7.0.0", "ruff>=0.14.7"]
[tool.ruff]
extend-exclude = ["tests/"]
[tool.ruff.lint]
ignore = ["B028"] # warnings.warn without stacklevel=2