-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (67 loc) · 2.04 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "django-tag-me"
version = "2025.01.17.2"
description = "A simple approach to Django tagging"
readme = "README.rst"
requires-python = ">=3.10"
license = {text = "BSD-3-Clause"}
authors = [{ name = "Mark Sevelj", email = "[email protected]" }]
maintainers = [{ name = "Mark Sevelj", email = "[email protected]" }]
keywords = ["Django Tag Me", "Django", "django", "django tagging", "Django tags", "Django field tags"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = ["Django>=4.0"]
[project.optional-dependencies]
dev = [
"django-extensions",
"hypothesis",
"pyright",
"pytest",
"pytest-django",
"pytest-cov",
"tox",
]
[project.urls]
Repository = "https://github.com/imAsparky/django-tag-me"
Documentation = "https://django-tag-me.readthedocs.io"
Tracker = "https://github.com/imAsparky/django-tag-me/issues"
Changelog = "https://github.com/imAsparky/django-tag-me/blob/main/CHANGELOG.md"
[tool.setuptools]
packages = {find = {where = ["."], include = ["tag_me", "tag_me.*"]}}
[tool.setuptools.package-data]
tag_me = [
"static/**/*",
"templates/**/*",
"templatetags/**/*",
]
[tool.setuptools.exclude-package-data]
"*" = ["tests/*", "example/*"]
[tool.distutils.commands]
pre-build = "rm -rf **/__pycache__ *.pyc"
[tool.coverage.run]
omit = [
'tests/test_*.py',
# '*/migrations/*'
]
[tool.bandit]
exclude_dirs = ["tests"]
[tool.black]
line-length = 79
target-version = ['py312']