-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.47 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
[project]
name = "pydf"
description = "df(1) clone with colour output"
version = "16" # keep in sync with function "version" in file "pydf"
readme = "README.md"
license = "CC-PDDC"
license-files = ["COPYING"]
authors = [
{ name = "Radovan Garabík", email = "garabik@kassiopeia.juls.savba.sk" },
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"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",
"Programming Language :: Python :: 3 :: Only",
"Topic :: System",
"Topic :: System :: Filesystems",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
keywords = ["df", "disk space", "colours", "filesystems"]
[project.urls]
"Homepage" = "https://github.com/garabik/pydf"
"Git Repository" = "https://github.com/garabik/pydf"
"Issue Tracker" = "https://github.com/garabik/pydf/issues"
[tool.setuptools.data-files]
"bin" = ["pydf"]
"etc" = ["pydfrc"] # best effort
"share/man/man1" = ["pydf.1"]
[tool.setuptools.packages.find]
include = []
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"