-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
69 lines (62 loc) · 1.63 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
[build-system]
requires = [
"setuptools>=42",
"setuptools_scm>=8"
]
build-backend = "setuptools.build_meta"
[project]
name = "scout"
authors = [
{ name = "Gabriel Filion", email = "[email protected]" },
]
description = "CLI interface to Tomboy or Gnote via DBus"
readme = "README.md"
keywords = [
"cli",
"tomboy",
"gnote",
"note",
"dbus"
]
license = { text = "BSD-4-Clause" }
requires-python = ">=3.4"
classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
"Environment :: Console"
]
dependencies = [
"setuptools",
"dbus-python"
]
urls.Homepage = "https://github.com/lelutin/scout"
urls.Source = "https://github.com/lelutin/scout"
urls.Tracker = "https://github.com/lelutin/scout/issues"
dynamic = ["version"]
[project.scripts]
scout = "scout.cli:main"
[project.entry-points."scout.actions"]
list = "scout.actions.list:ListAction"
delete = "scout.actions.delete:DeleteAction"
display = "scout.actions.display:DisplayAction"
edit = "scout.actions.edit:EditAction"
search = "scout.actions.search:SearchAction"
tag = "scout.actions.tag:TagAction"
version = "scout.actions.version:VersionAction"
[project.optional-dependencies]
test = [
"pytest",
"pytest-mock",
"mox3 >= 0.28.0"
]
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["test*", "test.*"]
[tool.setuptools_scm]
version_file = "src/scout/version.py"
[tool.pytest.ini_options]
markers = [
"integration: Tests for entire use cases but with external interactions disabled (deselect with '-m \"not integration\"')",
]