-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (95 loc) · 3.12 KB
/
Copy pathpyproject.toml
File metadata and controls
102 lines (95 loc) · 3.12 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "acai_aws"
dynamic = ["version"]
description = "DRY, configurable, declarative framework for building AWS Lambda APIs and event processors"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "Apache-2.0" }
authors = [{ name = "Paul Cruse III", email = "paulcruse3@gmail.com" }]
keywords = [
"aws",
"lambda",
"serverless",
"apigateway",
"router",
"openapi",
"pydantic",
"dynamodb",
"sqs",
"sns",
"s3",
"kinesis",
"firehose",
"msk",
"documentdb",
"event-driven",
"validation",
"jsonschema",
"python-framework",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Environment :: Web Environment",
"Environment :: Console",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Monitoring",
"Natural Language :: English",
]
dependencies = [
"boto3",
"dynamodb_json",
"jsonpickle",
"jsonref",
"jsonschema",
"icecream",
"pydantic",
"pyyaml",
"simplejson",
"xmltodict",
]
[project.urls]
Homepage = "https://github.com/syngenta/acai-python"
Documentation = "https://syngenta.github.io/acai-python-docs/"
Source = "https://github.com/syngenta/acai-python"
"Issue Tracker" = "https://github.com/syngenta/acai-python/issues"
"CI/CD" = "https://circleci.com/gh/syngenta/acai-python"
[dependency-groups]
dev = [
"autopep8",
"moto",
"pylint",
"pytest",
"pytest-html",
"pytest-cov",
"coverage",
"taskipy",
]
[tool.setuptools.packages.find]
include = ["acai_aws*"]
exclude = ["tests*"]
[tool.setuptools_scm]
[tool.uv]
required-version = ">=0.11"
python-preference = "only-managed"
[tool.taskipy.tasks]
generate = "python -m acai_aws.apigateway generate-openapi --base=acai_aws/example --handlers=tests/mocks/apigateway/openapi/**/*.py --output=tests/outputs --format=json,yml --delete"
test = "python -m unittest discover"
coverage = "coverage run --source acai_aws/ -m pytest tests/acai_aws --cov=acai_aws --junitxml ./coverage/reports/xunit.xml --cov-report xml:./coverage/reports/coverage.xml --html=./coverage/reports/index.html --self-contained-html --cov-report html:./coverage -p no:warnings -o log_cli=true"
lint = "pylint acai_aws --recursive=y --fail-under 10 --output-format=text:coverage/lint/report.txt,json:coverage/lint/report.json,parseable,colorized"