-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.11 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
[project]
name = "strrange"
version = "0.2"
authors = [
{ name="Oleh Alistratov", email="alistratov.dev@gmail.com" },
]
description = "Generate inclusive lexicographic ranges of strings"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/alistratov/strrange"
Issues = "https://github.com/alistratov/strrange/issues"
Documentation = "https://strrange.readthedocs.io/en/latest/"
[build-system]
requires = ["flit_core>=3.4"]
build-backend = "flit_core.buildapi"
[tool.poetry]
name = "strrange"
version = "0.2"
description = "Generate inclusive lexicographic ranges of strings"
authors = ["Oleh Alistratov <alistratov.dev@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
[tool.ruff]
exclude = [
"dist",
"docs",
".git",
".github",
".mypy_cache",
".pytest_cache",
".ruff_cache",
".idea",
]
line-length = 120
indent-width = 4
[tool.ruff.lint]
ignore = []