-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
104 lines (86 loc) · 2.27 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "aramaki"
version = "0.0.1"
description = "A federated DevOps control-plane."
authors = ["Christian Theune <[email protected]>"]
license = "AGPLv3"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.11"
alembic = "^1.11.1"
arrow = "^1.3.0"
babel = "^2.12.1"
cachecontrol = "^0.13.1"
filelock = "^3.13.1"
plaster-pastedeploy = "^1.0.1"
psycopg2-binary = "^2.9.9"
pyramid = "^2.0.1"
pyramid-chameleon = "^0.3"
pyramid-debugtoolbar = "^4.10"
pyramid-retry = "^2.1.1"
pyramid-tm = "^2.5"
pytz = "^2023.3"
sqlalchemy = "^2.0.19"
transaction = { version = "^3.1.0", extras = ["asyncio"] }
waitress = "^2.1.2"
websockets = "^12"
zope-sqlalchemy = "^3.0"
# peppercorn = "^0.6"
peppercorn = {git = "https://github.com/ctheune/peppercorn.git", branch = "htmx-workaround-1686-wrong-form-dataset-construction" }
aiofiles = "^23.2.1"
fswatch = "^0.1.1"
zstd = "^1.5.5.1"
redis = "^5.0.1"
[tool.poetry.group.dev.dependencies]
webtest = ">=3"
pytest = ">=7.4"
pytest-cov = ">=4.1"
pytest-cache = ">=1.0"
pytest-timeout = ">=2.2"
pytest-mypy = ">=0.10"
pytest-patterns = ">=0.1"
"zope.testbrowser" = ">=6.0"
[tool.poetry.plugins."paste.app_factory"]
main = "aramaki.web.main:main"
[tool.poetry.plugins."console_scripts"]
aramaki = "aramaki.scripts:main"
[project.urls]
Homepage = "https://github.com/flyingcircusio/aramaki"
Issues = "https://github.com/flyingcircusio/aramaki/issues"
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79
[[tool.mypy.overrides]]
module = "aramaki.*"
check_untyped_defs = true
[[tool.mypy.overrides]]
module = "webob.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "zope.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "pkg_resources.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "pyramid.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "transaction.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "webtest.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "pyramid.testing.*"
ignore_missing_imports = true