-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
68 lines (63 loc) · 2.22 KB
/
setup.py
File metadata and controls
68 lines (63 loc) · 2.22 KB
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
import os
from pathlib import Path
from setuptools import find_packages, setup
def read_long_description() -> str:
readme_path = Path(__file__).parent / "README.md"
with readme_path.open(encoding="utf-8") as fh:
return fh.read()
setup(
name="daplug-s3",
version=os.getenv("CIRCLE_TAG", "0.1.0"),
url="https://github.com/dual/daplug-s3",
author="Paul Cruse III",
author_email="paulcruse3@gmail.com",
description="Schema-aware DynamoDB adapter with prefixing, SNS hooks, and batching.",
long_description=read_long_description(),
long_description_content_type="text/markdown",
packages=find_packages(),
python_requires=">=3.10",
install_requires=[
"boto3>=1.42.4,<2; python_version >= '3.9'",
"botocore>=1.42.4,<2; python_version >= '3.9'",
"jsonpickle>=4.1.1,<5; python_version >= '3.8'",
"daplug-core==1.0.0b5; python_version >= '3.9'",
],
keywords=[
"dynamodb",
"aws",
"ddb",
"normalizer",
"schema",
"sns",
"event-driven",
"database",
"adapter",
"python-library",
],
project_urls={
"Homepage": "https://github.com/dual/daplug-s3",
"Documentation": "https://github.com/dual/daplug-s3#readme",
"Source Code": "https://github.com/dual/daplug-s3",
"Bug Reports": "https://github.com/dual/daplug-s3/issues",
"CI/CD": "https://circleci.com/gh/dual/daplug-s3",
},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
],
license="Apache License 2.0",
platforms=["any"],
zip_safe=False,
)