forked from nasa-gcn/python-dynamodb-autoincrement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (42 loc) · 1.12 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
[build-system]
requires = ["setuptools>=61", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "dynamodb-autoincrement"
description = "Use optimistic locking to put DynamoDB records with auto-incrementing attributes. Python port of https://github.com/nasa-gcn/dynamodb-autoincrement"
license = { text = "Apache-2.0" }
readme = "README.md"
authors = [
{ name = "Leo Singer", email = "[email protected]" },
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Database",
]
dependencies = [
"boto3 @ git+https://github.com/lpsinger/boto3@dynamodb-resource-transact-write-items",
"boto3-stubs[dynamodb]",
]
requires-python = ">=3.9"
dynamic = [ "version" ]
[project.optional-dependencies]
test = [
"pytest",
"pytest-dynamodb",
]
[project.urls]
source = "https://github.com/nasa-gcn/python-dynamodb-autoincrement"
[tool.coverage.run]
omit = [
"test_*.py",
]
[tool.coverage.report]
exclude_also = [
"@abstractmethod"
]
[tool.setuptools]
py-modules = [
"dynamodb_autoincrement",
]
[tool.setuptools_scm]