-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1014 Bytes
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1014 Bytes
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
# SPDX-FileCopyrightText: 2025 João Soares
# SPDX-License-Identifier: MIT
[project]
name = "skleton-tree"
version = "0.2.0"
description = "Print directory trees and recreate structures from saved layouts"
requires-python = ">=3.11"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "João Soares" }
]
keywords = ["tree", "directory", "filesystem", "scaffold", "cli"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"black>=25.1.0",
"build>=1.2.2.post1",
"pytest>=8.4.2",
"setuptools>=68",
"twine>=5.1.1",
]
[project.scripts]
[project.optional-dependencies]
dev = [
"black>=25.1.0",
"pytest>=8.4.2",
"build>=1.2.2.post1",
"twine>=5.1.1",
]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]