-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 1.28 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
[build-system]
requires = ["setuptools>=65.0"]
build-backend = "setuptools.build_meta"
[project]
name = "addok-sqlite-store"
version = "1.1.0"
description = "Store documents in SQLite for Addok."
readme = "README.md"
authors = [
{name = "Yohan Boniface", email = "[email protected]"}
]
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: GIS",
"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",
"Programming Language :: Python :: 3.14",
]
keywords = ["addok", "geocoding", "sqlite", "plugin"]
requires-python = ">=3.9"
dependencies = [
"addok",
]
[project.optional-dependencies]
dev = [
"pytest~=8.3",
"pytest-cov~=6.1",
"build~=1.2",
"twine==6.1.0",
]
[project.urls]
Homepage = "https://github.com/addok/addok-sqlite-store"
[project.entry-points."addok.ext"]
sqlite-store = "addok_sqlite_store"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["tests*", "venv*", ".venv*", "build*", "dist*"]
[tool.pytest.ini_options]
addopts = "-x"