-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (56 loc) · 1.14 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
50
51
52
53
54
55
56
57
58
59
60
from setuptools import find_packages, setup
# Runtime requirements.
aws_cdk_version = "2.162.1"
inst_reqs = [
f"aws-cdk-lib=={aws_cdk_version}",
f"aws-cdk.aws-lambda-python-alpha=={aws_cdk_version}a0",
"boto3",
"polling2",
"psycopg2-binary==2.9.10",
"python-dotenv",
]
boto_stubs = (
"boto3-stubs[lambda,s3,sqs,ssm,stepfunctions]",
"botocore-stubs",
)
extra_reqs = {
"test": [
"assertpy",
"black",
*boto_stubs,
"flake8",
"isort",
"moto",
"mypy",
"pytest",
"pytest-cov",
"requests",
],
"dev": [
"assertpy",
"black",
*boto_stubs,
"flake8",
"isort",
"mypy",
"nodeenv",
"pre-commit",
"pre-commit-hooks",
"pytest",
],
}
setup(
name="hls-sentinel2-downloader-serverless",
version="0.0.1",
python_requires=">=3.11",
author="Development Seed",
packages=find_packages(),
package_data={
".": [
"cdk.json",
],
},
install_requires=inst_reqs,
extras_require=extra_reqs,
include_package_data=True,
)