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
|
*.pyo
|
||||||
*.swp
|
*.swp
|
||||||
dist/
|
dist/
|
||||||
|
*.egg-info
|
||||||
*.project
|
*.project
|
||||||
*.pydevproject
|
*.pydevproject
|
||||||
*.ropeproject
|
*.ropeproject
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
|
|
||||||
import unittest, doctest
|
import unittest, doctest
|
||||||
from zope.interface.verify import verifyClass
|
from zope.interface.verify import verifyClass
|
||||||
from zope.interface import implements
|
|
||||||
from zope.intid.interfaces import IIntIds
|
from zope.intid.interfaces import IIntIds
|
||||||
|
|
||||||
from loops.interfaces import ILoops
|
from loops.interfaces import ILoops
|
||||||
|
|
|
@ -3,46 +3,23 @@ requires = ["setuptools"]
|
||||||
build-backend = "setuptools.build_meta"
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "cybertools"
|
name = "loops"
|
||||||
version = "3.0.1"
|
version = "3.0.1"
|
||||||
description = "cybertools: basic utilities for Zope3/bluebream/loops"
|
description = "loops: linked objects for organizational process services"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = {text = "MIT"}
|
license = {text = "MIT"}
|
||||||
keywords = ["cybertools"]
|
keywords = ["loops"]
|
||||||
authors = [{name = "Helmut Merz", email = "helmutm@cy55.de"}]
|
authors = [{name = "Helmut Merz", email = "helmutm@cy55.de"}]
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bs4",
|
"cybertools",
|
||||||
"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",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
test = ["pytest"]
|
test = ["pytest"]
|
||||||
|
|
||||||
[tool.setuptools]
|
[tool.setuptools]
|
||||||
packages = ["cybertools"]
|
packages = ["loops"]
|
||||||
|
|
||||||
[tool.pytest.ini_options]
|
[tool.pytest.ini_options]
|
||||||
addopts = "-vv"
|
addopts = "-vv"
|
||||||
|
|
Loading…
Add table
Reference in a new issue