-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpyproject.toml
56 lines (51 loc) · 1.72 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "portion"
version = "2.6.1"
license = { text = "LGPLv3" }
authors = [{ name = "Alexandre Decan", email = "[email protected]" }]
description = "Python data structure and operations for intervals"
readme = { file = "README.md", content-type = "text/markdown" }
urls = { Homepage = "https://github.com/AlexandreDecan/portion" }
keywords = ["interval", "range", "span"]
requires-python = ">= 3.9"
dependencies = ["sortedcontainers ~= 2.2"]
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",
]
[project.optional-dependencies]
test = ["pytest ~= 7.0", "coverage ~= 6.0", "ruff >= 0.6.9"]
[tool.ruff]
extend-exclude = ["tests/"]
[tool.ruff.lint]
select = [
"F", # pyflakes
"E", # pycodestyle
"W", # pycodestyle
"UP", # pyupgrade
"I", # Sort imports
"N", # pep8-naming
"B", # flake8-bugbear
"SIM", # flake8-simplify
"C4", # flake8-comprehensions
"PIE", # flake8-pie
"Q", # flake8-quotes
]
ignore = ["B028"]
[tool.setuptools]
packages = ["portion"]