-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 2.15 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (65 loc) · 2.15 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
[project]
name = "django-hstore-field"
version = "0.0.7"
description = "Drop-in HStoreField with auto-wired widget."
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "baseplate-admin", email = "61817579+baseplate-admin@users.noreply.github.com" },
]
maintainers = [
{ name = "baseplate-admin", email = "61817579+baseplate-admin@users.noreply.github.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.10"
dependencies = ["django>=5.0", "django-hstore-widget>=0.1.0"]
[tool.uv.sources]
django-hstore-widget = { workspace = true }
[dependency-groups]
test = [
"pytest>=8.0.1",
"pytest-django>=4.8.0",
"psycopg[binary]>=3",
"playwright>=1.52.0",
]
dev = [
"ruff>=0.11",
"pyrefly>=1.0",
"django-stubs>=5.0",
]
[project.urls]
Homepage = "https://github.com/baseplate-admin/django-hstore-widget"
Repository = "https://github.com/baseplate-admin/django-hstore-widget"
"Bug Tracker" = "https://github.com/baseplate-admin/django-hstore-widget/issues"
[tool.hatch.build]
ignore-vcs = true
include = ['src/django_hstore_field/**/*']
packages = ["src/django_hstore_field"]
directory = 'py-dist'
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
pythonpath = ["."]
DJANGO_SETTINGS_MODULE = "tests.conftest"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"