-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
74 lines (61 loc) · 1.85 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "feditest"
version = "0.4"
authors = [
{ name="Johannes Ernst", email="git@j12t.org" },
{ name="Steve Bate", email="svc-github@stevebate.net" }
]
maintainers = [
{ name="Johannes Ernst", email="git@j12t.org" },
{ name="Steve Bate", email="svc-github@stevebate.net" }
]
dependencies = [
"cryptography",
"httpx",
"langcodes",
"msgspec",
"multidict",
"jinja2",
"pyhamcrest",
"pytest",
"requests",
"types-requests",
"pre-commit"
]
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.2, <3.12.0"
# For production, we'd like to say this, but there does not seem to be a syntax for that
# requires-python = ">=3.11"
# We really want 3.12 so we can use @override
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.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"