-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (72 loc) · 1.93 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (72 loc) · 1.93 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
[tool.poetry]
name = "django-lexorank"
version = "0.1.4"
description = "This package implements an algorithm similar to JIRA's lexorank, but without using buckets for rebalancing that can be used with Django projects."
authors = ["Alex Rozum <rozumalex@gmail.com>"]
packages = [{ include = "django_lexorank" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Environment :: Web Environment",
"Framework :: Django",
"Topic :: Software Development :: Libraries :: Python Modules",
]
license = "MIT"
readme = "README.md"
[tool.poetry.urls]
"Homepage" = "https://github.com/rozumdev/django-lexorank/"
"Bug Tracker" = "https://github.com/rozumdev/django-lexorank/issues/"
[tool.poetry.dependencies]
python = "^3.8"
django = ">=3.2"
[tool.poetry.group.dev.dependencies]
pytest-django = "^4.5.2"
factory-boy = "^3.3.0"
django-extensions = "^3.2.3"
pre-commit = "^3.3.3"
bpython = "^0.24"
tox = "^4.6.4"
[tool.isort]
profile = "black"
[tool.flake8]
max-complexity = 15
max-line-length = 88
per-file-ignores = ["__init__.py: F401"]
[tool.mypy]
allow_untyped_globals = true
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
testpaths = "tests"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist =
django{3.2,4.2}-{py38,py39,py310,py311,py312}
django{5.0,5.2}-{py310,py311,py312,py313}
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
3.13: py313
[testenv]
deps =
django3.2: Django>=3.2,<3.3
django4.2: Django>=4.2,<4.3
django5.0: Django>=5.0,<5.1
django5.2: Django>=5.2,<5.3
pytest
pytest-django
factory-boy
django-extensions
commands =
pytest
setenv =
PYTHONPATH=.
"""
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"