-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (86 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
93 lines (86 loc) · 1.92 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
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
[build-system]
requires = ["uv_build>=0.8.5,<0.9.0"]
build-backend = "uv_build"
[project]
name = "pathseq"
version = "1.0.0"
description = "A pathlib-like library for working with file sequences."
authors = [
{name = "Ashley Whetter", email = "ashley@awhetter.co.uk"},
]
readme = "README.rst"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Plugins",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
]
requires-python = ">=3.10"
dependencies = [
"lark",
"python-statemachine",
"typing_extensions",
]
[project.urls]
Source = "https://github.com/AWhetter/pathseq"
Documentation = "https://pathseq.readthedocs.org"
[dependency-groups]
dev = [
{include-group = "test"},
{include-group = "format"},
{include-group = "lint"},
{include-group = "typecheck"},
{include-group = "doc"},
]
test = [
"fileseq",
"hypothesis",
"pytest",
]
format = [
"ruff",
]
lint = [
"ruff",
]
typecheck = [
"mypy",
]
doc = [
"furo",
"sphinx",
"sphinx-design",
]
release_notes = [
"towncrier",
]
[tool.uv.build-backend]
module-name = "pathseq"
[tool.mypy]
strict = true
[tool.towncrier]
directory = "doc/changes"
filename = "CHANGELOG.rst"
package = "pathseq"
title_format = "pathseq v{version} ({project_date})"
underlines = ["-", "^", "\""]
[tool.pytest.ini_options]
markers = [
"todo",
]
addopts = "--doctest-glob='[!0]*.rst' --doctest-modules --ignore=doc/source/conf.py"
doctest_optionflags = "ELLIPSIS"
testpaths = [
"tests",
"doc/source",
"src",
]