-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpyproject.toml
36 lines (33 loc) · 997 Bytes
/
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
[tool.poetry]
name = "surrealdb"
version = "0.4.3"
description = "The official SurrealDB library for Python."
readme = "README.md"
authors = ["SurrealDB"]
license = "Apache-2.0"
repository = "https://github.com/surrealdb/surrealdb.py"
documentation = "https://surrealdb.com/docs/sdk/python"
keywords = ["SurrealDB", "Database"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[build-system]
requires = ["setuptools", "wheel"]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.32.3"
cbor2 = "^5.6.5"
websockets = "^14.1"
[tool.poetry.group.dev]
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.0"
black = "^24.10.0"
mypy = "^1.13.0"
types-requests = "^2.32.0.20241016"