forked from brettcs/dtrx
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.42 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
[project]
name = "dtrx"
version = "8.7.1"
description = "Script to intelligently extract multiple archive types"
readme = "README.md"
license = "GPL-3.0-or-later"
authors = [{ name = "Brett Smith", email = "brettcsmith@brettcsmith.org" }]
maintainers = [{ name = "Brett Smith", email = "brettcsmith@brettcsmith.org" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Utilities",
]
requires-python = ">=3.10"
dependencies = [
# Intentionally disable windows install, dtrx is not supported on windows
"unsupported-python==1.0.0; platform_system=='Windows'",
]
[project.urls]
Homepage = "http://www.brettcsmith.org/2007/dtrx/"
Repository = "https://github.com/dtrx-py/dtrx"
Download = "https://github.com/dtrx-py/dtrx"
[project.scripts]
dtrx = "dtrx.dtrx:main"
[dependency-groups]
dev = [
"docutils==0.16",
"pyyaml==5.3.1",
"ruff>=0.14.3",
]
[tool.ruff]
target-version = "py312"
preview = true
line-length = 100
[build-system]
requires = ["setuptools>=75", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["dtrx*"]