-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 886 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (32 loc) · 886 Bytes
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
[project]
name = "aurora-dsql-test-asyncpg"
version = "0.1.1"
description = "A test project that utilizes Aurora DSQL Python Connector with asyncpg to connect to Amazon Aurora DSQL clusters."
readme = "README.md"
license = "Apache-2.0"
authors = [
{name = "Amazon Web Services", email = "aws-aurora-dsql-feedback@amazon.com"}
]
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
dependencies = [
"aurora-dsql-python-connector",
"boto3>=1.42.88",
"asyncpg>=0.31.0",
]
[project.optional-dependencies]
test = [
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
]
[tool.pytest.ini_options]
pythonpath = [
"src"
]