-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (53 loc) · 1.52 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
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "modular_sdk"
version = "6.3.0"
authors = [
{name = "EPAM Systems", email = "support@syndicate.team"}
]
license = {file = "LICENSE"}
description = "Data level integration for services built atop of Modular Framework"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
dependencies = [
"pika==1.3.2",
"pynamodb>=5.5.1,<6",
"boto3>=1.26.80,<1.35",
"botocore>=1.29.80,<1.35",
"pymongo~=4.5.0",
"python-dateutil>=2.8.2,<3.0",
"cachetools~=5.4.0",
"dynamodb-json~=1.4.2",
"aws-xray-sdk~=2.14.0"
]
[project.urls]
Homepage = "https://github.com/epam/modular-sdk"
Documentation = "https://github.com/epam/modular-sdk/blob/main/README.md"
Repository = "https://github.com/me/spam.git"
Changelog = "https://github.com/epam/modular-sdk/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["."]
include = ["modular_sdk*"]
exclude = ["tests*", "patch_scripts*"]
namespaces = false
[project.optional-dependencies]
cryptography = [
"cryptography~=41.0.7"
]
[tool.pyright]
include = ["modular_sdk/"]
exclude = [
"**/__pycache__",
]
pythonVersion = "3.10"
reportIncompatibleMethodOverride = "warning"
executionEnvironments = [
{root = "tests/", pythonVersion = "3.10", extraPaths = ["modular_sdk/"]}
]