-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (49 loc) · 1.28 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "yosuke"
version = "0.0.1"
description = "Agent side of Aramaki"
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"
arrow = "^1.3.0"
filelock = "^3.13.1"
pytz = "^2023.3"
websockets = "^12"
zope-sqlalchemy = "^3.0"
aiofiles = "^23.2.1"
fswatch = "^0.1.1"
zstd = "^1.5.5.1"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.4"
pytest-cov = ">=4.1"
pytest-cache = ">=1.0"
pytest-timeout = ">=2.2"
pytest-mypy = ">=0.10"
pytest-patterns = ">=0.1"
[tool.poetry.plugins."console_scripts"]
yosuke-federation = "yosuke.federation:main"
yosuke-worker = "yosuke.worker:main"
[project.urls]
Homepage = "https://github.com/flyingcircusio/yosuke"
Issues = "https://github.com/flyingcircusio/yosuke/issues"
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79
[[tool.mypy.overrides]]
module = "yosuke.*"
check_untyped_defs = true
[[tool.mypy.overrides]]
module = "pkg_resources.*"
ignore_errors = true