-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 1.15 KB
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
[build-system]
requires = ["hatchling>=0.25.1", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "slash-step"
description = "A more granular sub STEP for slash tests"
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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"Logbook>=1.2.0",
"gossip",
"slash>=0.7.0",
# Slash still using pkg_resources, installing setuptools as temporary workaround
# so this repo can be installed with UV
# Should be removed once a new version of slash will be released.
"setuptools<81",
]
dynamic = ["version"]
authors = [{ name = "Omer Gertel", email = "omer.gertel@gmail.com" }]
[project.urls]
"Homepage" = "https://github.com/getslash/slash-step"
[project.optional-dependencies]
testing = ["pytest", "pylint", "munch"]
[tool.hatch.version]
source = "vcs"