-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to using pyproject.toml (#121)
- Loading branch information
1 parent
8e410e8
commit 6d798a1
Showing
5 changed files
with
43 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
[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="[email protected]"}, | ||
{name="Viktor Dick", email="[email protected]"}, | ||
] | ||
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", | ||
"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] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,6 @@ envlist = py3 | |
|
||
[gh-actions] | ||
python = | ||
3.6: py3 | ||
3.7: py3 | ||
3.8: py3 | ||
3.9: py3 | ||
3.10: py3 | ||
|