-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (52 loc) · 1.86 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
[tool.poetry]
name = "django-hstore-widget"
version = "0.0.15"
description = "Human friendly HStoreWidget. Continual of django-admin-hstore-widget."
authors = [
"baseplate-admin <[email protected]>",
"Alexandre Dufour <[email protected]>",
]
maintainers = [
"baseplate-admin <[email protected]>",
]
readme = "README.md"
license = "MIT"
include = ["./src/django_hstore_widget/**/django_hstore_widget/*.js", "LICENSE"]
packages = [{ include = "django_hstore_widget", from = 'src' }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/baseplate-admin/django-hstore-widget/issues"
"homepage" = "https://github.com/baseplate-admin/django-hstore-widget"
"repository" = "https://github.com/baseplate-admin/django-hstore-widget"
[tool.poetry.dependencies]
python = ">=3.8"
django = "*"
[tool.poetry.group.test.dependencies]
pytest = "^8.0.1"
pytest-django = "^4.8.0"
psycopg = { version = "^3" }
selenium = "^4.26.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"