-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 1.19 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "beagle"
description = "Command Line Client for Hound"
readme = "README.rst"
requires-python = ">=3.9"
license = { text = "Apache-2.0" }
authors = [
{ name = "Doug Hellmann", email = "doug@doughellmann.com" }
]
classifiers = [
"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"
]
dependencies = [
"cliff>=2.11.0",
"requests>=2.18.4"
]
dynamic = ["version"]
[project.scripts]
beagle = "beagle.app:main"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.sdist]
include = [
"/beagle",
"/README.rst",
"/LICENSE"
]
[project.entry-points."beagle.cli"]
search = "beagle.search:Search"
[project.entry-points."cliff.formatter.list"]
grep = "beagle.grep_formatter:GrepFormatter"
link = "beagle.openstack:OSLinkFormatter"
[project.entry-points."openstack.cli"]
code_search = "beagle.search:Search"
[project.optional-dependencies]
test = [
"coverage",
"pytest",
"pytest-cov",
"testtools",
"fixtures",
"flake8"
]