-
-
Notifications
You must be signed in to change notification settings - Fork 506
/
pyproject.toml
58 lines (55 loc) · 1.78 KB
/
pyproject.toml
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
[tool.poetry]
name = "sh"
version = "2.1.0"
description = "Python subprocess replacement"
authors = ["Andrew Moffat <[email protected]>"]
readme = "README.rst"
maintainers = [
"Andrew Moffat <[email protected]>",
"Erik Cederstrand <[email protected]>"
]
homepage = "https://sh.readthedocs.io/"
repository = "https://github.com/amoffat/sh"
documentation = "https://sh.readthedocs.io/"
license = "MIT"
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
]
include = [
{ path = "CHANGELOG.md", format = "sdist" },
{ path = "MIGRATION.md", format = "sdist" },
{ path = "images", format = "sdist" },
{ path = "Makefile", format = "sdist" },
{ path = "tests", format = "sdist" },
{ path = "tox.ini", format = "sdist" },
{ path = "LICENSE.txt", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
[tool.poetry.group.dev.dependencies]
tox = "^4.6.4"
black = "^23.7.0"
coverage = "^7.2.7"
flake8 = "^6.1.0"
rstcheck = "^6.1.2"
sphinx = ">=1.6,<7"
sphinx-rtd-theme = "^1.2.2"
pytest = "^7.4.0"
mypy = "^1.4.1"
toml = "^0.10.2"
[build-system]
requires = ["poetry-core>=1.0.0a5"]
build-backend = "poetry.core.masonry.api"