-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
62 lines (55 loc) · 1.1 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
[tool.pytest.ini_options]
pythonpath = ["src", "tests"]
norecursedirs = [
"tests/kit"
]
[tool.ruff]
line-length = 111
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
readme = "README.md"
name = "snex"
dynamic = ["version"]
description = "snex - snippet extractor"
authors = [
{ name = "Joachim Bargsten", email = "[email protected]" }
]
requires-python = ">=3.10"
dependencies = [
"requests",
"pyyaml",
"more-itertools",
"click>=8.0.0",
"pyyaml",
"requests",
"chevron",
"Jinja2",
"pathspec"
]
# https://spdx.org/licenses/
license = { text = "Apache-2.0" }
[project.urls]
homepage = "https://github.com/jwbargsten/snex"
repository = "https://github.com/jwbargsten/snex"
documentation = "https://github.com/jwbargsten/snex"
[project.optional-dependencies]
dev = [
"setuptools_scm",
"pytest>=7",
"ruff",
"mypy",
]
build = [
"snex[dev]",
"build",
"twine",
"tomli",
"check-manifest",
"check-wheel-contents",
"pyroma"
]
[project.scripts]
snex = "snex.cli:main"
[tool.setuptools_scm]