-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (50 loc) · 1.54 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
59
60
61
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "es7s.commons"
dynamic = ["version"]
description = "es7s system common classes"
readme = "README.md"
license = "LGPL-3.0"
requires-python = ">=3.10"
platforms = ["linux"]
keywords = ["color", "format", "console", "terminal", "ansi"]
authors = [
{ name = "Aleksandr Shavykin", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Filters",
]
dependencies = [
"pytermor>=2.118.0.dev0",
]
[project.urls]
"Homepage" = "https://github.com/es7s/commons"
"Bug Tracker" = "https://github.com/es7s/commons/issues"
# ---------------------------------------------------------
[tool.hatch.publish.index]
disable = true
[tool.hatch.build.targets.sdist]
include = [
"/es7s_commons",
]
[tool.hatch.version]
path = "es7s_commons/_version.py"
[tool.hatch.envs.build]
detached = true
# ---------------------------------------------------------
[tool.black]
line-length = 100
target-version = ['py310']
# ---------------------------------------------------------