-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (52 loc) · 1.5 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
[tool.poetry]
name = "djangomoo"
version = "0.33.1"
description = "A game server for hosting text-based online MOO-like games."
license = "AGPL"
authors = ["Phil Christensen <[email protected]>"]
repository = "https://gitlab.com/bubblehouse/django-moo"
readme = "README.md"
packages = [
{ include = "moo" },
]
include = ["manage.py", "CHANGELOG.md", "poetry.lock", "docker-compose.*", "extras"]
[tool.poetry.dependencies]
python = "~3.11"
django = "~5"
psycopg2-binary = "^2.9.7"
uwsgi = "^2.0.22"
rich = "^13.5.3"
prompt-toolkit = "^3.0.39"
asyncssh = {extras = ["bcrypt"], version = "^2.14.0"}
restrictedpython = "^7.0"
ptpython = "^3.0.23"
django-simplesshkey = "^2.1.0"
watchdog = "^4.0.0"
poetry-plugin-export = "^1.7.1"
django-ace = "^1.32.4"
celery = {extras = ["redis"], version = "^5.4.0"}
django-celery-results = "^2.5.1"
django-celery-beat = "^2.6.0"
[tool.poetry.group.dev.dependencies]
sphinx = "^7.3.7"
myst-parser = "^3.0.1"
sphinx-rtd-theme = "^2.0.0"
sphinx-autodoc-typehints = "^2.2.2"
pylint = "^3.1.0"
pylint-django = "^2.5.5"
pytest-pylint = "^0.21.0"
pylint-pytest = "^1.1.7"
pytest-django = "^4.7.0"
pytest-spec = "^3.2.0"
coverage = "^7.4.4"
pytest-cov = "^4.1.0"
pylint-gitlab = "^2.0.0"
pytest-profiling = "^1.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "moo.settings.test"
python_files = ["tests/*.py"]
addopts = "--spec --cov=moo --no-cov-on-fail"
spec_test_format = "{result} {docstring_summary}"