-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
62 lines (56 loc) · 1.49 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
[project]
name = "django-iam-dbauth"
version = "0.2.1"
description = "Django database backends to use AWS Database IAM Authentication"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Lab Digital", email = "[email protected]" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
]
dependencies = [
"Django>=4.2",
"boto3",
"dnspython"
]
[project.urls]
Homepage = "https://github.com/LabD/django-iam-dbauth"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.3.2",
"coverage>=7.6.1",
"tox>=4.18.0",
"tox-gh-actions>=3.2.0",
"pretend>=1.0.9",
"psycopg2>=2.9.9",
"mysqlclient>=2.2.4",
"pytest-mock>=3.14.0",
"pytest-django>=4.8.0",
"moto>=5.0.13",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/django_iam_dbauth"]
[tool.ruff]
src = ["src", "tests"]
fix = true