forked from applegrew/django-select2
-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
pyproject.toml
91 lines (81 loc) · 2.26 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
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["flit_core>=3.2", "flit_scm", "wheel"]
build-backend = "flit_scm:buildapi"
[project]
name = "django-select2"
authors = [
{ name = "Johannes Maron", email = "[email protected]" },
]
readme = "README.rst"
license = { file = "LICENSE" }
keywords = ["Django", "select2", "autocomplete", "typeahead"]
dynamic = ["version", "description"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Topic :: Software Development",
]
requires-python = ">=3.8"
dependencies = [
"django>=3.2",
"django-appconf>=0.6.0"
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-django",
"selenium",
]
selenium = [
"selenium",
]
docs = [
"sphinx",
]
[project.urls]
Project-URL = "https://github.com/codingjoe/django-select2"
Changelog = "https://github.com/codingjoe/django-select2/releases"
Source = "https://github.com/codingjoe/django-select2"
Documentation = "https://django-select2.rtfd.io/"
Issue-Tracker = "https://github.com/codingjoe/django-select2/issues"
[tool.flit.module]
name = "django_select2"
[tool.setuptools_scm]
write_to = "django_select2/_version.py"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov --tb=short -rxs"
testpaths = ["tests"]
DJANGO_SETTINGS_MODULE = "tests.testapp.settings"
filterwarnings = ["ignore::PendingDeprecationWarning", "error::RuntimeWarning"]
[tool.coverage.run]
source = ["django_select2"]
[tool.coverage.report]
show_missing = true
[tool.isort]
atomic = true
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
known_first_party = "django_select2, tests"
default_section = "THIRDPARTY"
combine_as_imports = true
[tool.pydocstyle]
add_ignore = "D1"