-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
52 lines (49 loc) · 1.61 KB
/
pyproject.toml
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
[tool.poetry]
name = "kerno"
version = "0.8.1.dev1"
description = "Framework for the application service layer."
readme = "README.rst"
authors = ["Nando Florestan <[email protected]>"]
license = "MIT"
repository = "https://github.com/nandoflorestan/kerno"
documentation = "http://docs.nando.audio/kerno/latest/"
classifiers = [
# https://pypi.org/pypi?:action=list_classifiers
"Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Framework :: Pyramid",
"Topic :: Database",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
# A list of keywords (max: 5) that the package is related to
keywords = [
"Clean Architecture",
"service layer",
"action",
"pyramid",
"sqlalchemy",
]
[tool.poetry.dependencies]
python = ">= 3.9"
# https://python-poetry.org/docs/dependency-specification/
bag = ">=5.0"
reg = "0.12"
[tool.poetry.dev-dependencies]
colander = "*"
pytest = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"