py-scopes/pyproject.toml

29 lines
593 B
TOML

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "py-scopes"
version = "3.0.1"
description = "Implementation of the unknown 'scopes' paradigm in Python"
readme = "README.md"
license = {text = "MIT"}
keywords = ["scopes"]
authors = [{name = "Helmut Merz", email = "helmutm@cy55.de"}]
dependencies = [
]
[project.optional-dependencies]
postgres = [
"transaction",
"psycopg[binary]",
"SQLAlchemy",
"zope.sqlalchemy",
]
app = ["python-dotenv", "zope.publisher", "zope.traversing"]
test = ["pytest"]
[tool.setuptools]
packages = ["scopes"]