-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (95 loc) · 2.66 KB
/
pyproject.toml
File metadata and controls
103 lines (95 loc) · 2.66 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[project]
name = "django-selectjs"
version = "0.3.7"
description = "Django SelectJS - A replacement for Select2 that uses plain HTML and Javascript"
authors = [
{name = "Caltech IMSS ADS", email = "imss-ads-staff@caltech.edu"}
]
readme = "README.md"
requires-python = ">=3.10"
keywords = ["select", "widget", "django"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"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",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Natural Language :: English",
"Topic :: Database",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"django >= 5.2",
]
[project.urls]
Homepage = "https://github.com/caltechads/django-selectjs"
Repository = "https://github.com/caltechads/django-selectjs"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["*.tests", "*.tests.*", "tests.*", "tests", "htmlcov", "bin"]
where = ["."]
[tool.flake8]
max-line-length = 120
filename = "*.py"
exclude = [
"*.cfg", "*.js", "*.json", "*.bak", "*.md", "*.sql", "*.sh",
"*.txt", "*.yml", "simple_test_db", "Makefile", "Dockerfile",
"MANIFEST.in"
]
ignore = [
"E221", # multiple spaces before operator
"E241", # multiple spaces after :
"E265", # block comment should start with '# '
"E266", # too many leading '#' for block comment
"E401", # multiple imports on one line
"W503", "W504"
]
[tool.uv]
python-preference = "only-system"
default-groups = ["docs", "test", "demo", "dev"]
[tool.uv.workspace]
members = [
"demo",
]
[dependency-groups]
dev = [
"ipython>=7.27.0",
"django-stubs==5.1.1",
"build>=1.2.2.post1",
]
docs = [
"Sphinx<7",
"pydata-sphinx-theme <= 2.0.0",
"sphinxcontrib-images >= 0.9.4",
"setuptools>=75.1.0",
"sphinxcontrib-django>=2.5",
]
test = [
"unittest-xml-reporting>=3.0.4",
"testfixtures>=6.17.0",
"coverage>=5.0.3",
"django-coverage-plugin>=1.8.0",
"factory-boy>=2.12.0",
]
demo = [
"django~=5.2",
"crispy-bootstrap5>=2025.6",
"django-book-manager>=0.3.7",
"django-crispy-forms~=2.4",
"django-extensions~=4.1",
"django-theme-academy>=0.3.71",
"django-wildewidgets>=1.2.0",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"