-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (34 loc) · 897 Bytes
/
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
[project]
name = "matrix_synapse_testutils"
dynamic = ["version"]
description = "Testing utils extracted from matrix-synapse to be reused in plugins"
authors = [
{name = "Julian Hille"}
]
maintainers = [
{name = "Julian Hille"}
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.7"
keywords = ["matrix", "synapse", "testutils"]
classifiers = [
"Topic :: Software Development"
]
dependencies = [
"matrix-synapse[test]==1.96.1"
]
[project.urls]
homepage = "https://github.com/julianhille/matrix-synapse-testutils"
documentation = "https://github.com/julianhille/matrix-synapse-testutils"
repository = "https://github.com/julianhille/matrix-synapse-testutils"
[tool.setuptools_scm]
normalize=true
[build-system]
requires = [
"build==0.9.0",
"setuptools >= 35.0.2",
"wheel",
"setuptools_scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"