-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (68 loc) · 1.79 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (68 loc) · 1.79 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
[build-system]
requires = [
"hatchling==1.30.1",
"hatch-vcs==0.5.0",
]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/jobify_db/_version.py"
[project]
name = "jobify-db"
dynamic = ["version"]
description = "Database storage backends for the Jobify framework"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{ name = "Danil Kovalev", email = "dan.kovalev2013@gmail.com" },
]
classifiers = [
"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",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"jobify>=0.7.1",
]
[project.optional-dependencies]
asyncpg = ["asyncpg>=0.30"]
psycopg = ["psycopg[binary]>=3.2", "psycopg_pool>=3.2"]
motor = ["motor>=3.6"]
aiomysql = ["aiomysql>=0.2"]
[project.urls]
Source = "https://github.com/Jobify-Community/jobify-db"
Homepage = "https://github.com/Jobify-Community/jobify-db"
Tracker = "https://github.com/Jobify-Community/jobify-db/issues"
[dependency-groups]
dev = [
{include-group = "lint"},
{include-group = "test"},
"prek>=0.2.5",
]
lint = [
"bandit>=1.8.6",
"codespell>=2.4.1",
"mypy>=1.18.2",
"ruff>=0.14.0",
"semgrep>=1.139.0",
"zizmor>=1.14.2",
]
test = [
"nox>=2025.5.1",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"pytest-cov>=7.0.0",
"testcontainers[postgres,mongo,mysql]>=4.10",
]
[tool.bandit]
skips = ["B101"]