-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (42 loc) · 1.27 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
"""cdk-bootstrapped-db: """
from setuptools import find_namespace_packages, setup
with open("README.md") as f:
desc = f.read()
with open("VERSION") as version_file:
version = version_file.read().strip()
install_requires = [
"aws-cdk-lib>=2.0.0",
"constructs>=10.0.0",
]
extra_reqs = {
"dev": ["black==22.3.0", "flake8==4.0.1", "pyright==1.1.251"],
}
setup(
name="cdk-bootstrapped-db",
description=("A CDK construct for bootstrapping a database in RDS"),
long_description=desc,
long_description_content_type="text/markdown",
python_requires=">=3.8",
classifiers=[
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
],
keywords="CDK RDS Database Construct",
maintainer="Edward Keeble",
maintainer_email="[email protected]",
url="https://github.com/developmentseed/cdk-bootstrapped-db",
license="MIT",
packages=find_namespace_packages(
exclude=[
"tests",
]
),
data_files=[("version", ["VERSION"])],
zip_safe=False,
include_package_data=True,
install_requires=install_requires,
tests_require=extra_reqs["dev"],
extras_require=extra_reqs,
version=version,
)