-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (45 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
48 lines (45 loc) · 1.34 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
[project]
name = "cavedb"
version = "1.0.2"
description = "Async JSONL-based database with ORM bindings to Python dataclasses"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.13"
authors = [
{ name = "Nikita Belomestnykh", email = "medbeebs@gmail.com" },
]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Framework :: AsyncIO",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Database :: Front-Ends",
]
dependencies = [
"aiofiles>=25.1.0",
"orjson>=3.11.3",
]
[project.urls]
Homepage = "https://github.com/medbeebs/cavedb"
Repository = "https://github.com/medbeebs/cavedb"
Issues = "https://github.com/medbeebs/cavedb/issues"
[dependency-groups]
dev = [
"black>=25.11.0",
"isort>=7.0.0",
]
[tool.isort]
profile = "black"
line_length = 120