-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (52 loc) · 1.75 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (52 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[tool.poetry]
name = "pluserable"
version = "0.11.1.dev1"
description = "Generic user registration for the Pyramid web framework"
readme = "README.rst"
authors = ["Nando Florestan <nandoflorestan@gmail.com>"]
license = "BSD"
repository = "https://github.com/nandoflorestan/pluserable"
documentation = "http://docs.nando.audio/pluserable/latest/"
classifiers = [
# https://pypi.org/pypi?:action=list_classifiers
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
# A list of keywords (max: 5) that the package is related to
keywords = ["authentication", "cookie", "pyramid", "user", "registration"]
[tool.poetry.dependencies]
python = ">= 3.11"
# https://python-poetry.org/docs/dependency-specification/
bag = ">= 5.0.0"
kerno = ">= 0.7.0"
sqlalchemy = "*"
transaction = "*"
redis = "*"
# cryptacular = "*"
passlib = "*"
deform = "*"
pyramid = ">= 2.0"
pyramid_mailer = "*"
pyramid_mako = "*"
"zope.interface" = "*"
[tool.poetry.group.dev.dependencies]
paste = "*"
pytest = "*"
webtest = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
norecursedirs = "docs .git _build tmp* *site-packages* *.egg build dist local __pycache__"