-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpyproject.toml
74 lines (67 loc) · 2 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
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "surrealdb"
version = "1.0.3"
description = "SurrealDB python client"
readme = "README.md"
authors = [{ name = "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 :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"aiohappyeyeballs==2.4.4",
"aiohttp==3.11.11",
"aiosignal==1.3.2",
"async-timeout==5.0.1",
"attrs==25.1.0",
"Cerberus==1.3.7",
"certifi==2024.12.14",
"charset-normalizer==3.4.1",
"frozenlist==1.5.0",
"idna==3.10",
"marshmallow==3.26.0",
"multidict==6.1.0",
"packaging==24.2",
"propcache==0.2.1",
"pytz==2024.2",
"requests==2.32.3",
"typing_extensions==4.12.2",
"urllib3==2.3.0",
"websockets==14.2",
"yarl==1.18.3"
]
[project.urls]
Homepage = "https://github.com/surrealdb/surrealdb.py"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
exclude = ["src/surrealdb/__init__.py"]
[tool.mypy]
mypy_path = "src"
explicit_package_bases = true
disable_error_code = ["return-value", "return-type"]
[[tool.mypy.overrides]]
module = "cerberus.*"
ignore_missing_imports = true
# [project.scripts]
# sdblpy = "sblpy.cli.entrypoint:main"