-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
54 lines (50 loc) · 1.6 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
[project]
name = "pgtree"
authors = [
{ name = "Franck Jouvanceau" },
]
maintainers = [
{ name = "Franck Jouvanceau" },
]
license = "MIT"
description = "Unix process tree search"
dependencies = [
]
dynamic=["version"]
readme = "README.md"
license-files = ["LICENSE"]
requires-python = ">= 3.6"
keywords = ["shell", "pstree", "pgrep", "process", "tree"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Clustering",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
]
[project.urls]
Homepage = "https://github.com/joknarf/pgtree"
Documentation = "https://github.com/joknarf/pgtree/blob/master/README.md"
Repository = "https://github.com/joknarf/pgtree.git"
[build-system]
requires = ["setuptools >= 64.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "pgtree/version.py"
[tool.setuptools]
script-files = ["pgtree/pgtree"]