-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (73 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
83 lines (73 loc) · 1.71 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pydbmtools"
version = "0.0.3"
requires-python = ">=3.12"
authors = [
{ name = "Mark Veltzer", email = "mark.veltzer@gmail.com" }
]
maintainers = [
{ name = "Mark Veltzer", email = "mark.veltzer@gmail.com" }
]
description = "Tools for handling .dbm files"
readme = "README.md"
license = "MIT"
keywords=[
"dbm",
"ndbm",
"shelve",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"pytconf",
"pylogconf",
]
[project.urls]
"Homepage" = "https://github.com/veltzer/pydbmtools"
"Bug Tracker" = "https://github.com/veltzer/pydbmtools/issues"
"Documentation" = "https://veltzer.github.io/pydbmtools"
"Download" = "https://pypi.org/project/pydbmtools/"
"Repository" = "https://github.com/veltzer/pydbmtools"
[project.scripts]
pydbmtools = "pydbmtools.main:main"
[tool.ruff]
line-length = 130
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.hatch.build.targets.wheel]
packages = ["src/pydbmtools"]
[tool.hatch.build.targets.sdist]
include = [
"src/pydbmtools/",
"README.md",
"LICENSE",
"pyproject.toml"
]
exclude = [
".gitignore",
".github/",
"tests/",
"docs/",
"config/",
"*.md",
]
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
[tool.hatch.envs.default]
installer = "uv"
[tool.uv.pip]
prerelease = "disallow"