-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
78 lines (65 loc) · 2.03 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "feditest"
base_version = "0.6"
dynamic = ["version"]
authors = [
{ name="Johannes Ernst", email="[email protected]" },
{ name="Steve Bate", email="[email protected]" }
]
maintainers = [
{ name="Johannes Ernst", email="[email protected]" },
{ name="Steve Bate", email="[email protected]" }
]
dependencies = [
"cryptography",
"httpx",
"langcodes",
"msgspec",
"multidict",
"jinja2",
"pyhamcrest",
"requests",
"types-requests",
"pre-commit",
# For testing: not sure how to specify this just for testing
"pytest",
"beautifulsoup4"
]
description = "Test framework to test distributed, heterogeneous systems with complex protocols such as the Fediverse"
readme = "README-PyPI.md"
# We develop on 3.11, so we can support debian 12 (including Raspberry PI OS) systems,
# which have not been upgraded to 3.12 yet.
requires-python = ">=3.11"
# We really want 3.12 so we can use @override
# Do not specify an upper boundary, see https://github.com/fediverse-devnet/feditest/issues/412
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing"
]
[project.scripts]
feditest = "feditest.cli:main"
[project.urls]
Homepage = "https://feditest.org/"
[tool.hatch.build.targets.sdist]
exclude = [
"docs/"
]
[tool.hatch.metadata.hooks.custom]
# Empty: https://hatch.pypa.io/dev/how-to/config/dynamic-metadata/
[tool.pylint."MESSAGES CONTROL"]
max-line-length=120
disable="arguments-renamed, empty-docstring, global-variable-not-assigned, line-too-long, missing-class-docstring, missing-function-docstring, too-few-public-methods, too-many-arguments"
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = [ "tests.unit" ]
[tool.ruff]
target-version = "py311"