-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.17 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
[build-system]
requires = ["setuptools>=61.2", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "perfact-zodbsync"
authors = [
{name="Ján Jockusch", email="jan.jockusch@perfact.de"},
{name="Viktor Dick", email="viktor.dick@perfact.de"},
]
description = "Synchronize ZODB objects with a file system structure"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: POSIX :: Linux",
"Framework :: Zope",
"Topic :: Software Development :: Version Control :: Git",
]
dependencies = [
"filelock>=3.24.0",
"ZODB",
"Zope",
]
dynamic = ["version"]
requires-python = ">=3.8"
[project.urls]
"Homepage" = "https://github.com/perfact/zodbsync"
[project.scripts]
perfact-zoperecord = "perfact.zodbsync.scripts:zoperecord"
perfact-zopeplayback = "perfact.zodbsync.scripts:zopeplayback"
zodbsync = "perfact.zodbsync.scripts:zodbsync"
[tool.distutils.bdist_wheel]
universal = 1
[tool.setuptools]
include-package-data = false
[tool.setuptools_scm]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "W", "I"]