-
-
Notifications
You must be signed in to change notification settings - Fork 506
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (70 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (70 loc) · 1.81 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[project]
name = "sh"
version = "2.4.0"
description = "Python subprocess replacement"
authors = [
{name = "Andrew Moffat", email = "arwmoffat@gmail.com"},
]
maintainers = [
{name = "Andrew Moffat", email = "arwmoffat@gmail.com"},
]
readme = "README.rst"
license = {text = "MIT"}
requires-python = ">=3.10,<4.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://sh.readthedocs.io/"
Repository = "https://github.com/amoffat/sh"
Documentation = "https://sh.readthedocs.io/"
[dependency-groups]
dev = [
"tox>=4.6.4",
"tox-uv>=1",
"ruff>=0.4",
"coverage>=7.2.7",
"rstcheck>=6.1.2",
"sphinx>=1.6,<7",
"sphinx-rtd-theme>=1.2.2",
"pytest>=7.4.0",
"mypy>=1.4.1",
"pyrefly>=1.1.1",
]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
ignore = ["E203"]
[tool.hatch.build.targets.wheel]
packages = ["src/sh"]
[tool.hatch.build.targets.sdist]
include = [
"/src/sh",
"/tests",
"/CHANGELOG.md",
"/Makefile",
"/LICENSE.txt",
"/README.rst",
"/tox.ini",
"/docs",
]
exclude = [
"/docs/build",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"