-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
56 lines (48 loc) · 1.21 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
[build-system]
requires = ["hatchling>=0.25.1", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "backslash"
description = "Client library for the Backslash test reporting service"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "BSD 3-Clause License" }
classifiers = [
"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",
]
dependencies = [
"GitPython",
"Logbook",
"munch",
"requests",
"sentinels",
"URLObject",
"vintage",
]
dynamic = ["version"]
authors = [{ name = "Rotem Yaari", email = "vmalloc@gmail.com" }]
[project.urls]
"Homepage" = "http://getslash.github.io/"
"GitHub" = "https://github.com/getslash/backslash"
[project.optional-dependencies]
testing = [
"slash>=1.5.0",
"Flask",
"Flask-Loopback",
"pylint",
"pytest>4.0",
"pytest-cov>=2.6",
"URLObject",
"weber-utils",
]
doc = ["alabaster", "releases", "Sphinx"]
[tool.hatch.version]
source = "vcs"
[tool.pytest]
testpaths = "tests"
timeout_method = "signal"
addopts = "-ra -W error::DeprecationWarning"