-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (68 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
73 lines (68 loc) · 1.53 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "shard_core"
version = "0.38.3"
description = "Core software stack that manages all aspects of a Shard"
readme = "README.md"
license-files = ["LICENSE.md"]
authors = [
{ name = "Max von Tettenborn", email = "max.t@freeshard.net" }
]
urls = { "Homepage" = "https://github.com/FreeshardBase/shard_core" }
requires-python = ">=3.13"
dependencies = [
"pydantic-settings>=2,<3",
"psycopg[binary]",
"psycopg_pool",
"yoyo-migrations",
"uvicorn",
"fastapi[standard]",
"websockets",
"pyjwt",
"pydantic>=2,<3",
"Jinja2",
"pyyaml",
"docker",
"python-gitlab",
"cachetools",
"blinker",
"requests",
"aiohttp",
"cryptography",
"requests-http-signature",
"aiozipstream",
"email_validator",
"croniter",
"bitstring",
"azure-storage-blob",
"asgi-lifespan==2.*",
"python-multipart",
"aiofiles",
"httpx",
]
[project.optional-dependencies]
dev = [
"setuptools",
"ruff",
"pytest",
"pytest-docker",
"pytest-mock",
"pytest-asyncio",
"yappi",
"responses",
"aioresponses",
"datamodel-code-generator[http]"
]
[tool.setuptools]
py-modules = []
package-data = { "shard_core" = ["config.toml", "data/*"] }
[tool.ruff]
line-length = 120
lint.ignore = ["E712"]
[tool.pytest.ini_options]
log_cli = true
asyncio_mode = "auto"
# https://github.com/pytest-dev/pytest-asyncio/issues/924
asyncio_default_fixture_loop_scope = "function"