-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (46 loc) · 1.58 KB
/
setup.py
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
import setuptools
with open("readme.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="dynamodb",
install_requires=[
"boto3",
"logdna",
],
version="0.5.7",
author="Joaquin Grez",
author_email="joaquingrez@consiliumbots.com",
description=("Thin wrapper for DynamoDB's API"),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ConsiliumBots/cb-wrapper-dynamodb",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(),
python_requires=">=3.9",
)
# 0.0.1 -> Initial
# 0.0.2 -> Env var as optionals
# 0.0.3 -> Secrets manager
# 0.0.4 -> Fix en level
# 0.0.5 -> Fix
# 0.1.0 -> Major update on functions
# 0.1.1 -> AWS secrets added
# 0.1.1 -> AWS secrets removed
# 0.1.4 -> Method get_column_count
# 0.2.0 -> Dynamo class refactor
# 0.2.1 -> Error fixed
# 0.3.1 -> NotFoundError handled
# 0.4.1 -> Error handler for get_column_count method
# 0.4.2 -> str index added
# 0.5.0 -> get_column method added
# 0.5.1 -> get_column: return explicit attribute names
# 0.5.2 -> get_column: add option to filter results
# 0.5.3 -> get_item: allow str in key argument with value for item
# 0.5.4 -> handle large responses in scan operations
# 0.5.5 -> always return Item object from get_item method
# 0.5.6 -> allow multiple equality filters in get_column method
# 0.5.7 -> Allow pagination on get_all_messages_from_index