fix pyproject.toml - start testing / fixing with Python3
This commit is contained in:
parent
77aaad1aa0
commit
7b3c7c182e
3 changed files with 6 additions and 29 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,6 +2,7 @@
|
|||
*.pyo
|
||||
*.swp
|
||||
dist/
|
||||
*.egg-info
|
||||
*.project
|
||||
*.pydevproject
|
||||
*.ropeproject
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import unittest, doctest
|
||||
from zope.interface.verify import verifyClass
|
||||
from zope.interface import implements
|
||||
from zope.intid.interfaces import IIntIds
|
||||
|
||||
from loops.interfaces import ILoops
|
||||
|
|
|
@ -3,46 +3,23 @@ requires = ["setuptools"]
|
|||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "cybertools"
|
||||
name = "loops"
|
||||
version = "3.0.1"
|
||||
description = "cybertools: basic utilities for Zope3/bluebream/loops"
|
||||
description = "loops: linked objects for organizational process services"
|
||||
readme = "README.md"
|
||||
license = {text = "MIT"}
|
||||
keywords = ["cybertools"]
|
||||
keywords = ["loops"]
|
||||
authors = [{name = "Helmut Merz", email = "helmutm@cy55.de"}]
|
||||
|
||||
dependencies = [
|
||||
"bs4",
|
||||
"BTrees",
|
||||
"docutils",
|
||||
"lxml",
|
||||
"persistent",
|
||||
"pillow",
|
||||
"zope.app.container",
|
||||
"zope.app.file",
|
||||
"zope.app.rotterdam",
|
||||
"zope.app.testing",
|
||||
"zope.authentication",
|
||||
"zope.browser",
|
||||
"zope.browserpage",
|
||||
"zope.catalog",
|
||||
"zope.component",
|
||||
"zope.container",
|
||||
"zope.formlib",
|
||||
"zope.i18nmessageid",
|
||||
"zope.index",
|
||||
"zope.interface",
|
||||
"zope.lifecycleevent",
|
||||
"zope.sendmail",
|
||||
"zope.session",
|
||||
"zope.testing",
|
||||
"cybertools",
|
||||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
test = ["pytest"]
|
||||
|
||||
[tool.setuptools]
|
||||
packages = ["cybertools"]
|
||||
packages = ["loops"]
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
addopts = "-vv"
|
||||
|
|
Loading…
Add table
Reference in a new issue