-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (69 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
78 lines (69 loc) · 1.9 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "django-flag-app"
version = "2.0.0"
description = "A pluggable django application that adds the ability for users to flag(or report) your models"
readme = "README.rst"
requires-python = ">=3.10"
license = "MIT"
authors = [
{name = "Abhyudai"},
]
keywords = ["django", "flag", "report", "moderate"]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
dependencies = [
"django",
]
[project.urls]
Documentation = "https://django-flag-app.readthedocs.io"
"Source Code" = "https://github.com/abhiabhi94/django-flag-app"
Homepage = "https://github.com/abhiabhi94/django-flag-app"
[tool.hatch.build.targets.wheel]
packages = ["flag"]
include = [
"flag/static/**/*",
"flag/templates/**/*",
]
[tool.hatch.build.targets.sdist]
include = [
"flag/",
"README.rst",
"LICENSE",
"CHANGELOG.rst",
"pyproject.toml"
]
[tool.ruff]
line-length = 120
exclude = [".tox", ".git", "*/migrations/*", "*/static/CACHE/*", "docs"]
[tool.coverage.run]
branch = true
source = ["flag"]
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.pytest.ini_options]
django_find_project = false
addopts = "-p no:doctest --ds=testapp.settings.test"
[tool.sphinx]
source-dir = "docs"
build-dir = "docs/_build"
all-files = true