-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (49 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
58 lines (49 loc) · 1.7 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
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "aexpect"
description = "Python library used to control interactive programs"
readme = "README.rst"
dynamic = ["version"]
license = "GPL-2.0-or-later"
authors = [{name = "Aexpect developers", email = "avocado-devel@redhat.com"}]
maintainers = [{name = "Aexpect developers", email = "avocado-devel@redhat.com"}]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 6 - Mature",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: 3.13",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/avocado-framework/aexpect"
Repository = "https://github.com/avocado-framework/aexpect"
Issues = "https://github.com/avocado-framework/aexpect/issues"
[project.optional-dependencies]
test = ["pytest>=6.0"]
lint = ["black", "pycodestyle", "isort", "inspektor"]
dev = ["aexpect[test,lint]", "setuptools-scm>=8", "build", "twine"]
[project.scripts]
aexpect_helper = "aexpect.scripts.aexpect_helper:main"
[tool.setuptools.packages.find]
include = ["aexpect*"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"
[tool.black]
line-length = 79
target-version = ["py38", "py39", "py310", "py311", "py312", "py313"]
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = ["tests"]
[tool.isort]
profile = "black"
line_length = 79