-
Notifications
You must be signed in to change notification settings - Fork 38
/
pyproject.toml
81 lines (71 loc) · 1.71 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
79
80
81
[build-system]
requires = ["hatchling>=0.25.1", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "slash"
description = "A Modern Testing Framework for Large-scale Projects"
readme = "README.md"
requires-python = ">=3.7"
license = { text = "BSD 3-Clause License" }
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"arrow",
"colorama",
"confetti>=2.5.3",
"dessert~=1.4.7",
"emport~=1.3.1",
"gossip>=2.3.0",
"Jinja2",
"Logbook>=1.2.0",
"ordered-set",
"requests>=1.1.0",
"SQLAlchemy",
"libtmux",
"raven",
"py>=1.5.0",
"pyparsing",
"vintage>=0.4.0",
"brotli",
"IPython==1.2.1; implementation_name=='pypy'",
"IPython<7.17.0; implementation_name!='pypy' and python_version<='3.6'",
"IPython; implementation_name!='pypy' and python_version>'3.6'",
]
dynamic = ["version"]
authors = [
{ name = "Rotem Yaari", email = "[email protected]" },
]
[project.urls]
"Homepage" = "http://getslash.github.io/"
"GitHub" = "https://github.com/getslash/slash"
[project.scripts]
slash = "slash.frontend.main:main_entry_point"
[project.optional-dependencies]
testing = [
"coverage",
"coveralls",
"munch",
"pytest",
"pytest-cov",
"pytest-timeout",
"pyforge",
"astroid~=2.15.5",
"pylint~=2.17.4",
]
doc = [
"alabaster",
"docutils",
"releases~=1.6.1",
"Sphinx",
]
[tool.hatch.version]
source = "vcs"
[tool.pytest]
testpaths = "tests"
timeout_method = "signal"
addopts = "-ra -W error::DeprecationWarning"