File: pyproject.toml

package info (click to toggle)
python-django-rest-framework-guardian 0.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 136 kB
  • sloc: python: 267; makefile: 7; sh: 6
file content (67 lines) | stat: -rw-r--r-- 1,731 bytes parent folder | download
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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"


[project]
name = "djangorestframework-guardian"
version = "0.4.0"

dependencies = [
    "django",
    "djangorestframework",
    "django-guardian",
]
requires-python = ">=3.10"

authors = [{name = "Ryan P Kilby", email = "kilbyr@gmail.com"}]
description = "django-guardian support for Django REST Framework"
readme = "README.md"
license = "BSD-3-Clause"
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Environment :: Web Environment",
    "Framework :: Django",
    "Framework :: Django :: 4.2",
    "Framework :: Django :: 5.0",
    "Framework :: Django :: 5.1",
    "Framework :: Django :: 5.2",
    "Intended Audience :: Developers",
    "Operating System :: OS Independent",
    "Programming Language :: Python :: 3 :: Only",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
]

[project.urls]
Repository = "https://github.com/rpkilby/django-rest-framework-guardian"
Issues = "https://github.com/rpkilby/django-rest-framework-guardian/issues"
Changelog = "https://github.com/rpkilby/django-rest-framework-guardian/CHANGELOG"


[tool.setuptools.packages.find]
where = ["src"]

[tool.coverage.paths]
source = ["src/"]

[tool.coverage.run]
branch = true

[tool.coverage.report]
show_missing = true

[tool.flake8]
max-line-length = 88
max-complexity = 10

[tool.isort]
profile = "black"
atomic = true
combine_as_imports = true
lines_after_imports = 2
known_first_party = ["rest_framework_guardian", "tests"]
known_third_party = ["django", "rest_framework"]
src_paths = ["src", "tests"]