-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (76 loc) · 2.02 KB
/
pyproject.toml
File metadata and controls
84 lines (76 loc) · 2.02 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
84
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zodburi"
version = "3.0.0"
dynamic = ["readme"]
description="Construct ZODB storage instances from URIs."
keywords = [
"zodb",
"zodbconn",
]
authors = [
{name = "Chris Rossi", email = "pylons-discuss@googlegroups.com"},
]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: Repoze Public License",
]
requires-python = ">=3.9"
dependencies = [
"ZODB",
"ZConfig",
"ZEO"
]
[project.entry-points.'zodburi.resolvers']
zeo = "zodburi.resolvers:client_storage_resolver"
file = "zodburi.resolvers:file_storage_resolver"
zconfig = "zodburi.resolvers:zconfig_resolver"
memory = "zodburi.resolvers:mapping_storage_resolver"
demo = "zodburi.resolvers:demo_storage_resolver"
[project.urls]
Homepage = "https://docs.pylonsproject.org/projects/zodburi/en/latest/"
Repository = "https://github.com/Pylons/zodburi"
Issues = "https://github.com/Pylons/zodburi/issues"
Changelog = "https://github.com/Pylons/zodburi/blob/master/CHANGES.rst"
[project.optional-dependencies]
testing = [
"pytest",
"pytest-cov",
"check-manifest",
]
docs = [
"Sphinx",
"pylons-sphinx-themes",
]
[tool.setuptools]
packages = ["zodburi"]
[tool.setuptools.dynamic]
readme = {file = ["README.rst", "CHANGES.rst"]}
[tool.pytest.ini_options]
addopts = [
"-l",
"--strict",
]
norecursedirs = [
"lib",
"include",
".tox",
".git",
]
python_files = "test_*.py"
filterwarnings = [
"ignore::DeprecationWarning:pkg_resources",
]
[tool.coverage.report]
show_missing = true