-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 996 Bytes
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 996 Bytes
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
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"pytest>=7.3.0",
"pytest-cov>=4.0.0",
"black>=23.3.0",
"pyflame>=0.3.0",
"ipython>=8.12.0",
]
lint = [
"flake8",
"black"
]
test = ["pytest", "pytest-cov"]
doc = ["mkdocs"]
[tool.pdm.scripts]
test = "pytest test"
fmt = "black ."
[project]
name = "tinysearch"
dynamic = ["version"]
description = "Tiny one-phase search engine"
authors = [
{name = "Domagoj Marsic", email = "dmars@protonmail.com"},
]
dependencies = [
"pystemmer>=2.2.0.1",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "Apache-2.0"}
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["search", "engine"]
[project.urls]
Homepage = "https://github.com/dmarsic/tinysearch"
[tool.pdm.version]
source = "scm"
[build-system]
requires = ["pdm-backend", "setuptools-git-versioning"]
build-backend = "pdm.backend"