22 lines
476 B
TOML
22 lines
476 B
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "py-scopes"
|
|
version = "3.0.1"
|
|
description = "Implementation of the strange 'scopes' paradigma in Python"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
keywords = ["scopes"]
|
|
authors = [{name = "Helmut Merz", email = "helmutm@cy55.de"}]
|
|
|
|
dependencies = [
|
|
"transaction",
|
|
"psycopg[binary]",
|
|
"SQLAlchemy",
|
|
"zope.sqlalchemy",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = ["pytest"]
|