-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (54 loc) · 1.15 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
[project]
name = "safari-bookmarks-cli"
authors = [
{ name="Marty", email="[email protected]" },
]
description = "A cli to manage bookmarks in the Safari web browser."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"pydantic~=2.1",
]
dynamic = ["version"]
[project.optional-dependencies]
tests = [
"pytest~=8.2",
"flake8~=7.1",
]
build = [
"hatch",
]
[project.urls]
"Homepage" = "https://github.com/evilmarty/safari-bookmarks-cli"
"Bug Tracker" = "https://github.com/evilmarty/safari-bookmarks-cli/issues"
[project.scripts]
safari-bookmarks = "safaribookmarks.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
sources = ["src"]
include = [
"src",
]
exclude = [
".github",
".gitignore",
"pyproject.toml",
"tests",
]
[tool.hatch.version]
source = "code"
expression = "VERSION"
path = "src/safaribookmarks/version.py"
search-paths = ["src"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = "src"