-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
112 lines (102 loc) · 2.71 KB
/
pyproject.toml
File metadata and controls
112 lines (102 loc) · 2.71 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
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
105
106
107
108
109
110
111
112
[project]
name = "django-moo"
version = "1.5.2"
description = "A game server for hosting text-based online MOO-like games."
license = { text = "AGPL" }
authors = [
{ name = "Phil Christensen", email = "phil@bubblehouse.org" }
]
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"django>=5,<5.1",
"psycopg2-binary>=2.9.7,<3",
"uwsgi>=2.0.22,<3",
"rich>=13.5.3",
"prompt-toolkit>=3.0.39,<4",
"pypager>=3.0.1,<4",
"asyncssh[bcrypt]>=2.14.0,<3",
"restrictedpython>=7.0",
"ptpython>=3.0.23,<4",
"django-simplesshkey>=2.1.0,<3",
"watchdog>=4.0.0",
"django-ace>=1.32.4,<2",
"celery[redis]>=5.4.0,<6",
"django-celery-beat>=2.6.0,<3",
"webssh>=1.6.2,<2",
"redis>=5.2.1",
"packaging>=25.0",
"more-itertools>=10.7.0",
"opentelemetry-sdk>=1.40.0",
"opentelemetry-exporter-otlp-proto-http>=0.61b0",
"opentelemetry-instrumentation-django>=0.61b0",
"opentelemetry-instrumentation-celery>=0.61b0",
"opentelemetry-instrumentation-psycopg2>=0.61b0",
"opentelemetry-instrumentation-redis>=0.61b0",
"python-redis-cache>=4.0.2",
"django-storages>=1.14.6",
"boto3>=1.42.63",
"django-compressor>=4.6.0",
"django-cte>=3.0.0",
"django-extensions>=4.1",
"django-allauth>=0.63.0",
"mistune>=3.0.0",
"pyyaml>=6.0",
]
[project.urls]
Repository = "https://gitlab.com/bubblehouse/django-moo"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = [
"moo",
"manage.py",
"CHANGELOG.md",
"uv.lock",
"compose.*",
"extras",
]
[tool.hatch.build.targets.wheel]
packages = ["moo"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "moo.settings.test"
python_files = ["tests/*.py"]
addopts = "--spec --ds=moo.settings.test"
spec_test_format = "{result} {docstring_summary}"
[tool.mypy]
ignore_missing_imports = true
exclude = [
"moo/bootstrap/default/",
"moo/bootstrap/default_verbs/",
"moo/core/migrations/",
]
[tool.ruff]
line-length = 120
[tool.ruff.format]
[tool.uv]
dev-dependencies = [
"pytest-spec>=6.0.0",
"sphinx>=7.3.7,<8",
"myst-parser>=3.0.1,<4",
"sphinx-rtd-theme>=2.0.0,<3",
"sphinx-autodoc-typehints>=2.2.2,<3",
"pylint>=3.1.0,<4",
"pylint-django>=2.5.5,<3",
"pytest-pylint>=0.21.0,<1",
"pylint-pytest>=1.1.7,<2",
"pytest-django>=4.7.0,<5",
"coverage>=7.4.4,<8",
"pytest-cov>=4.1.0,<5",
"pylint-gitlab>=2.0.0,<3",
"pytest-profiling>=1.7.0,<2",
"pytest-xdist>=3.8.0,<4",
"pylint-celery>=0.3",
"django-celery-results>=2.5.1,<3",
"ruff>=0.9.0",
"sphinx-lint>=1.0.2",
"pexpect>=4.9.0",
"types-pexpect>=4.9.0",
"types-pyyaml>=6.0",
]
[tool.uv.sources]