-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
681 lines (667 loc) · 38 KB
/
Copy pathpyproject.toml
File metadata and controls
681 lines (667 loc) · 38 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
[build-system]
requires = ["hatchling>=1.20", "hatch-vcs>=0.4"]
build-backend = "hatchling.build"
[project]
name = "modulex-integrations"
dynamic = ["version"]
description = "Community-contributable integrations (tools) for ModuleX"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "ModuleX", email = "team@modulex.dev" }]
keywords = ["modulex", "integrations", "ai", "tools", "langchain"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Typing :: Typed",
]
dependencies = [
"pydantic>=2.5.0",
"httpx>=0.25.0",
"langchain-core>=0.3.0",
]
[project.optional-dependencies]
# `all` is auto-assembled from per-integration `dependencies.toml`
# files by scripts/assemble_dependencies.py. Do not edit by hand.
all = []
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-httpx>=0.30.0",
"ruff>=0.6.0",
"mypy>=1.10.0",
# SDK extras needed at dev/test time so integration test mocks can
# patch the SDK symbols. These also live in each integration's
# dependencies.toml for the future assemble script.
"langchain-tavily>=0.2.0",
"nasdaq-data-link>=1.0.0", # for tests/mocking (pulls pandas transitively)
"pymssql>=2.2.8", # microsoft_sql_server
# Wave 7-9 SDK extras — mirror of per-integration dependencies.toml.
# mypy needs these importable to type-check the integration's tools.py.
"aiomysql>=0.2.0", # mysql
"asyncpg>=0.29.0", # postgresql
"boto3>=1.34.0", # aws
"cryptography>=41.0", # coinbase (ed25519 signing), google_cloud (JWT signing)
"elevenlabs>=2.0.0", # elevenlabs
"hubspot-api-client>=11.0.0", # hubspot
"pymongo>=4.13", # mongodb_atlas
"snowflake-connector-python>=3.0.0", # snowflake
]
[project.urls]
Homepage = "https://modulex.dev"
Documentation = "https://docs.modulex.dev"
Repository = "https://github.com/ModuleXAI/modulex-integrations"
Changelog = "https://github.com/ModuleXAI/modulex-integrations/blob/main/CHANGELOG.md"
Issues = "https://github.com/ModuleXAI/modulex-integrations/issues"
# Entry points — each migrated tool gets one line here.
[project.entry-points."modulex.tools"]
aws = "modulex_integrations.tools.aws"
azure_storage = "modulex_integrations.tools.azure_storage"
bloomerang = "modulex_integrations.tools.bloomerang"
browserbase = "modulex_integrations.tools.browserbase"
browser_use = "modulex_integrations.tools.browser_use"
github = "modulex_integrations.tools.github"
gitlab = "modulex_integrations.tools.gitlab"
slack = "modulex_integrations.tools.slack"
etsy = "modulex_integrations.tools.etsy"
exa = "modulex_integrations.tools.exa"
fal_ai = "modulex_integrations.tools.fal_ai"
fellow = "modulex_integrations.tools.fellow"
figma = "modulex_integrations.tools.figma"
tavily = "modulex_integrations.tools.tavily"
insightly = "modulex_integrations.tools.insightly"
instacart = "modulex_integrations.tools.instacart"
tinyurl = "modulex_integrations.tools.tinyurl"
customerio = "modulex_integrations.tools.customerio"
digital_ocean = "modulex_integrations.tools.digital_ocean"
npm = "modulex_integrations.tools.npm"
pinterest = "modulex_integrations.tools.pinterest"
pipedrive = "modulex_integrations.tools.pipedrive"
klaviyo = "modulex_integrations.tools.klaviyo"
convertapi = "modulex_integrations.tools.convertapi"
crunchbase = "modulex_integrations.tools.crunchbase"
dropbox = "modulex_integrations.tools.dropbox"
docusign = "modulex_integrations.tools.docusign"
hackernews = "modulex_integrations.tools.hackernews"
heygen = "modulex_integrations.tools.heygen"
heroku = "modulex_integrations.tools.heroku"
hootsuite = "modulex_integrations.tools.hootsuite"
hunter = "modulex_integrations.tools.hunter"
lemon_squeezy = "modulex_integrations.tools.lemon_squeezy"
short_io = "modulex_integrations.tools.short_io"
nasdaq = "modulex_integrations.tools.nasdaq"
netlify = "modulex_integrations.tools.netlify"
firecrawl = "modulex_integrations.tools.firecrawl"
freshdesk = "modulex_integrations.tools.freshdesk"
jina_ai = "modulex_integrations.tools.jina_ai"
jira = "modulex_integrations.tools.jira"
cal_com = "modulex_integrations.tools.cal_com"
calendly = "modulex_integrations.tools.calendly"
canva = "modulex_integrations.tools.canva"
instructure_canvas = "modulex_integrations.tools.instructure_canvas"
linear = "modulex_integrations.tools.linear"
linkedin = "modulex_integrations.tools.linkedin"
livestorm = "modulex_integrations.tools.livestorm"
luma = "modulex_integrations.tools.luma"
ahrefs = "modulex_integrations.tools.ahrefs"
airtable = "modulex_integrations.tools.airtable"
algolia = "modulex_integrations.tools.algolia"
amazon_alexa = "modulex_integrations.tools.amazon_alexa"
amazon_selling_partner = "modulex_integrations.tools.amazon_selling_partner"
apify = "modulex_integrations.tools.apify"
telegram = "modulex_integrations.tools.telegram"
twilio = "modulex_integrations.tools.twilio"
typeform = "modulex_integrations.tools.typeform"
servicenow = "modulex_integrations.tools.servicenow"
intercom = "modulex_integrations.tools.intercom"
scrape_do = "modulex_integrations.tools.scrape_do"
apollo_io = "modulex_integrations.tools.apollo_io"
cloudflare = "modulex_integrations.tools.cloudflare"
segment = "modulex_integrations.tools.segment"
semrush = "modulex_integrations.tools.semrush"
gmail = "modulex_integrations.tools.gmail"
gong = "modulex_integrations.tools.gong"
godaddy = "modulex_integrations.tools.godaddy"
google_cloud = "modulex_integrations.tools.google_cloud"
google_contacts = "modulex_integrations.tools.google_contacts"
google_ad_manager = "modulex_integrations.tools.google_ad_manager"
google_ads = "modulex_integrations.tools.google_ads"
google_analytics = "modulex_integrations.tools.google_analytics"
google_appsheet = "modulex_integrations.tools.google_appsheet"
google_calendar = "modulex_integrations.tools.google_calendar"
google_docs = "modulex_integrations.tools.google_docs"
sendgrid = "modulex_integrations.tools.sendgrid"
sentry = "modulex_integrations.tools.sentry"
coinbase = "modulex_integrations.tools.coinbase"
coinmarketcap = "modulex_integrations.tools.coinmarketcap"
databricks = "modulex_integrations.tools.databricks"
datadog = "modulex_integrations.tools.datadog"
postgresql = "modulex_integrations.tools.postgresql"
mysql = "modulex_integrations.tools.mysql"
snowflake = "modulex_integrations.tools.snowflake"
square = "modulex_integrations.tools.square"
supabase = "modulex_integrations.tools.supabase"
hubspot = "modulex_integrations.tools.hubspot"
notion = "modulex_integrations.tools.notion"
elevenlabs = "modulex_integrations.tools.elevenlabs"
reflect = "modulex_integrations.tools.reflect"
revolt = "modulex_integrations.tools.revolt"
salesforce = "modulex_integrations.tools.salesforce"
clickup = "modulex_integrations.tools.clickup"
google_drive = "modulex_integrations.tools.google_drive"
google_forms = "modulex_integrations.tools.google_forms"
google_maps_platform = "modulex_integrations.tools.google_maps_platform"
google_merchant_center = "modulex_integrations.tools.google_merchant_center"
google_my_business = "modulex_integrations.tools.google_my_business"
google_search_console = "modulex_integrations.tools.google_search_console"
google_meet = "modulex_integrations.tools.google_meet"
google_sheets = "modulex_integrations.tools.google_sheets"
google_slides = "modulex_integrations.tools.google_slides"
google_tag_manager = "modulex_integrations.tools.google_tag_manager"
google_tasks = "modulex_integrations.tools.google_tasks"
google_workspace = "modulex_integrations.tools.google_workspace"
mailchimp = "modulex_integrations.tools.mailchimp"
mailgun = "modulex_integrations.tools.mailgun"
microsoft_365_people = "modulex_integrations.tools.microsoft_365_people"
microsoft_bookings = "modulex_integrations.tools.microsoft_bookings"
microsoft_dynamics_365_sales = "modulex_integrations.tools.microsoft_dynamics_365_sales"
microsoft_entra_id = "modulex_integrations.tools.microsoft_entra_id"
microsoft_excel = "modulex_integrations.tools.microsoft_excel"
microsoft_onedrive = "modulex_integrations.tools.microsoft_onedrive"
microsoft_outlook = "modulex_integrations.tools.microsoft_outlook"
microsoft_power_bi = "modulex_integrations.tools.microsoft_power_bi"
microsoft_sql_server = "modulex_integrations.tools.microsoft_sql_server"
microsoft_teams = "modulex_integrations.tools.microsoft_teams"
mintlify = "modulex_integrations.tools.mintlify"
mixpanel = "modulex_integrations.tools.mixpanel"
monday = "modulex_integrations.tools.monday"
motion = "modulex_integrations.tools.motion"
postgrid = "modulex_integrations.tools.postgrid"
posthog = "modulex_integrations.tools.posthog"
postman = "modulex_integrations.tools.postman"
product_hunt = "modulex_integrations.tools.product_hunt"
okta = "modulex_integrations.tools.okta"
pagerduty = "modulex_integrations.tools.pagerduty"
shopify = "modulex_integrations.tools.shopify"
shopify_partner = "modulex_integrations.tools.shopify_partner"
woocommerce = "modulex_integrations.tools.woocommerce"
yelp = "modulex_integrations.tools.yelp"
zoom = "modulex_integrations.tools.zoom"
mercury = "modulex_integrations.tools.mercury"
agentmail = "modulex_integrations.tools.agentmail"
airweave = "modulex_integrations.tools.airweave"
amplitude = "modulex_integrations.tools.amplitude"
brandfetch = "modulex_integrations.tools.brandfetch"
clay = "modulex_integrations.tools.clay"
crowdstrike = "modulex_integrations.tools.crowdstrike"
daytona = "modulex_integrations.tools.daytona"
dropcontact = "modulex_integrations.tools.dropcontact"
enrow = "modulex_integrations.tools.enrow"
findymail = "modulex_integrations.tools.findymail"
gamma = "modulex_integrations.tools.gamma"
grafana = "modulex_integrations.tools.grafana"
grain = "modulex_integrations.tools.grain"
granola = "modulex_integrations.tools.granola"
greptile = "modulex_integrations.tools.greptile"
icypeas = "modulex_integrations.tools.icypeas"
incidentio = "modulex_integrations.tools.incidentio"
instantly = "modulex_integrations.tools.instantly"
kalshi = "modulex_integrations.tools.kalshi"
lemlist = "modulex_integrations.tools.lemlist"
linkup = "modulex_integrations.tools.linkup"
loops = "modulex_integrations.tools.loops"
mem0 = "modulex_integrations.tools.mem0"
mongodb_atlas = "modulex_integrations.tools.mongodb_atlas"
neverbounce = "modulex_integrations.tools.neverbounce"
new_relic = "modulex_integrations.tools.new_relic"
obsidian = "modulex_integrations.tools.obsidian"
pinecone = "modulex_integrations.tools.pinecone"
pulse = "modulex_integrations.tools.pulse"
qdrant = "modulex_integrations.tools.qdrant"
quiver = "modulex_integrations.tools.quiver"
railway = "modulex_integrations.tools.railway"
resend = "modulex_integrations.tools.resend"
revenuecat = "modulex_integrations.tools.revenuecat"
serper = "modulex_integrations.tools.serper"
similarweb = "modulex_integrations.tools.similarweb"
sixtyfour = "modulex_integrations.tools.sixtyfour"
stripe = "modulex_integrations.tools.stripe"
twilio_voice = "modulex_integrations.tools.twilio_voice"
vanta = "modulex_integrations.tools.vanta"
vercel = "modulex_integrations.tools.vercel"
weaviate = "modulex_integrations.tools.weaviate"
whatsapp = "modulex_integrations.tools.whatsapp"
wiza = "modulex_integrations.tools.wiza"
youtube = "modulex_integrations.tools.youtube"
zerobounce = "modulex_integrations.tools.zerobounce"
[tool.hatch.version]
# Version is derived from the latest git tag matching v* (e.g. v0.1.0,
# v0.2.0a1). Between tags, builds carry a PEP 440 dev-suffixed version.
# Release CI only publishes on a tag push, so PyPI never sees a dev
# version.
source = "vcs"
[tool.hatch.build.hooks.vcs]
# Writes a `_version.py` into the source tree at build time. Kept out
# of git via .gitignore; importlib.metadata is the runtime path we use.
version-file = "src/modulex_integrations/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["src/modulex_integrations"]
[tool.hatch.build.targets.sdist]
include = [
"src",
"tests",
"scripts",
"README.md",
"CONTRIBUTING.md",
"CHANGELOG.md",
"LICENSE",
"pyproject.toml",
]
[tool.pytest.ini_options]
testpaths = ["tests", "src/modulex_integrations"]
python_files = "test_*.py"
asyncio_mode = "auto"
addopts = [
"--strict-markers",
"--import-mode=importlib",
"-ra",
]
[tool.ruff]
line-length = 100
target-version = "py312"
src = ["src", "tests"]
# Generated by hatch-vcs at build time; not under our control.
extend-exclude = ["src/modulex_integrations/_version.py"]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "B", "C4", "UP", "RUF"]
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["N802", "N803", "N806"]
# npm outputs mirror the upstream registry's mixedCase field names
# (devDependencies, peerDependencies, optionalDependencies).
"src/modulex_integrations/tools/npm/outputs.py" = ["N815"]
# short_io outputs mirror upstream camelCase (originalURL, shortURL,
# idString, DomainId, expiredURL, etc.).
"src/modulex_integrations/tools/short_io/outputs.py" = ["N815"]
# Airtable mirrors the upstream `createdTime` camelCase field name.
"src/modulex_integrations/tools/airtable/outputs.py" = ["N815"]
# Reference-data file mirroring the legacy Nasdaq field tables; each
# row is a one-line dict literal with long descriptions on purpose.
"src/modulex_integrations/tools/nasdaq/fields.py" = ["E501"]
# Test files in these tools assemble long URL literals in
# httpx_mock setups (filter params + nested paths). Wrapping breaks
# the readability of the URL-matches-mock contract.
"src/modulex_integrations/tools/short_io/tests/test_short_io.py" = ["E501"]
# microsoft_outlook manifest and tools have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/microsoft_outlook/manifest.py" = ["E501"]
"src/modulex_integrations/tools/microsoft_outlook/tools.py" = ["E501"]
# microsoft_onedrive manifest and tools have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/microsoft_onedrive/manifest.py" = ["E501"]
"src/modulex_integrations/tools/microsoft_onedrive/tools.py" = ["E501"]
# microsoft_onedrive outputs mirror upstream Microsoft Graph camelCase
# field names (webUrl, createdDateTime, lastModifiedDateTime, driveType, etc.).
"src/modulex_integrations/tools/microsoft_onedrive/outputs.py" = ["N815"]
# microsoft_outlook outputs mirror upstream Microsoft Graph camelCase
# field names (displayName, isDraft, parentFolderId, etc.).
"src/modulex_integrations/tools/microsoft_outlook/outputs.py" = ["N815"]
# monday manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/monday/manifest.py" = ["E501"]
"src/modulex_integrations/tools/monday/tools.py" = ["E501"]
"src/modulex_integrations/tools/monday/tests/test_monday.py" = ["E501"]
# google_calendar outputs mirror upstream Google Calendar API camelCase
# field names (htmlLink, timeZone, colorId, iCalUID, recurringEventId, etc.).
"src/modulex_integrations/tools/google_calendar/outputs.py" = ["N815"]
# google_calendar manifest and tools have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/google_calendar/manifest.py" = ["E501"]
"src/modulex_integrations/tools/google_calendar/tools.py" = ["E501"]
"src/modulex_integrations/tools/google_calendar/tests/test_google_calendar.py" = ["E501"]
# microsoft_teams outputs mirror upstream Microsoft Graph camelCase
# field names (displayName, webUrl, chatType, createdDateTime, etc.).
"src/modulex_integrations/tools/microsoft_teams/outputs.py" = ["N815"]
# microsoft_teams manifest and tools have long description string
# literals in setup_instructions and Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/microsoft_teams/manifest.py" = ["E501"]
"src/modulex_integrations/tools/microsoft_teams/tools.py" = ["E501"]
# jira manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/jira/manifest.py" = ["E501"]
"src/modulex_integrations/tools/jira/tools.py" = ["E501"]
"src/modulex_integrations/tools/jira/tests/test_jira.py" = ["E501"]
# linkedin manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/linkedin/manifest.py" = ["E501"]
"src/modulex_integrations/tools/linkedin/tools.py" = ["E501"]
"src/modulex_integrations/tools/linkedin/tests/test_linkedin.py" = ["E501"]
# microsoft_bookings manifest and tools have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/microsoft_bookings/manifest.py" = ["E501"]
"src/modulex_integrations/tools/microsoft_bookings/tools.py" = ["E501"]
# shopify manifest, tools, and tests have long description string
# literals in ParameterDef / Field kwargs and mock JSON that cannot be wrapped.
"src/modulex_integrations/tools/shopify/manifest.py" = ["E501"]
"src/modulex_integrations/tools/shopify/tools.py" = ["E501"]
"src/modulex_integrations/tools/shopify/tests/test_shopify.py" = ["E501"]
# zoom manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/zoom/manifest.py" = ["E501"]
"src/modulex_integrations/tools/zoom/tools.py" = ["E501"]
# aws manifest and tools have long description string literals in
# ParameterDef / Field kwargs and credential guard lines that cannot be wrapped.
"src/modulex_integrations/tools/aws/manifest.py" = ["E501"]
"src/modulex_integrations/tools/aws/tools.py" = ["E501"]
"src/modulex_integrations/tools/aws/tests/test_aws.py" = ["E501"]
# twilio manifest, tools, and tests have long description string literals
# in ParameterDef / Field kwargs and credential guard lines that cannot be wrapped.
"src/modulex_integrations/tools/twilio/manifest.py" = ["E501"]
"src/modulex_integrations/tools/twilio/tools.py" = ["E501"]
"src/modulex_integrations/tools/twilio/tests/test_twilio.py" = ["E501"]
# docusign manifest and tools have long description string literals in
# ParameterDef / Field kwargs and credential guard lines that cannot be wrapped.
"src/modulex_integrations/tools/docusign/manifest.py" = ["E501"]
"src/modulex_integrations/tools/docusign/tools.py" = ["E501"]
# google_tag_manager tools and tests have long description string literals
# in Field kwargs and mock JSON that cannot be wrapped.
"src/modulex_integrations/tools/google_tag_manager/tools.py" = ["E501"]
"src/modulex_integrations/tools/google_tag_manager/tests/test_google_tag_manager.py" = ["E501"]
# mailgun manifest and tools have long description string literals in
# ParameterDef / Field kwargs and credential guard lines that cannot be wrapped.
"src/modulex_integrations/tools/mailgun/manifest.py" = ["E501"]
"src/modulex_integrations/tools/mailgun/tools.py" = ["E501"]
# gitlab manifest, tools, and tests have long description string literals
# in ParameterDef / Field kwargs and mock URLs that cannot be wrapped.
"src/modulex_integrations/tools/gitlab/manifest.py" = ["E501"]
"src/modulex_integrations/tools/gitlab/tools.py" = ["E501"]
"src/modulex_integrations/tools/gitlab/tests/test_gitlab.py" = ["E501"]
# digital_ocean manifest, tools, and tests have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/digital_ocean/manifest.py" = ["E501"]
"src/modulex_integrations/tools/digital_ocean/tools.py" = ["E501"]
"src/modulex_integrations/tools/digital_ocean/tests/test_digital_ocean.py" = ["E501"]
# godaddy manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/godaddy/manifest.py" = ["E501"]
"src/modulex_integrations/tools/godaddy/tools.py" = ["E501"]
# canva manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/canva/manifest.py" = ["E501"]
"src/modulex_integrations/tools/canva/tools.py" = ["E501"]
# supabase manifest and tools have long description string literals in
# ParameterDef / Field kwargs and credential guard lines that cannot be wrapped.
"src/modulex_integrations/tools/supabase/manifest.py" = ["E501"]
"src/modulex_integrations/tools/supabase/tools.py" = ["E501"]
"src/modulex_integrations/tools/supabase/tests/test_supabase.py" = ["E501"]
# postman manifest, tools, and tests have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/postman/manifest.py" = ["E501"]
"src/modulex_integrations/tools/postman/tools.py" = ["E501"]
"src/modulex_integrations/tools/postman/tests/test_postman.py" = ["E501"]
# google_workspace manifest, tools, and tests have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/google_workspace/manifest.py" = ["E501"]
"src/modulex_integrations/tools/google_workspace/tools.py" = ["E501"]
"src/modulex_integrations/tools/google_workspace/tests/test_google_workspace.py" = ["E501"]
# sentry manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/sentry/manifest.py" = ["E501"]
"src/modulex_integrations/tools/sentry/tools.py" = ["E501"]
# databricks manifest, tools, and tests have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/databricks/manifest.py" = ["E501"]
"src/modulex_integrations/tools/databricks/tools.py" = ["E501"]
"src/modulex_integrations/tools/databricks/tests/test_databricks.py" = ["E501"]
# apify manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/apify/manifest.py" = ["E501"]
"src/modulex_integrations/tools/apify/tools.py" = ["E501"]
# google_cloud manifest, tools, and tests have long description string
# literals in ParameterDef / Field kwargs, URL f-strings with quote() calls,
# and test fixture key material that cannot be wrapped.
"src/modulex_integrations/tools/google_cloud/manifest.py" = ["E501"]
"src/modulex_integrations/tools/google_cloud/tools.py" = ["E501"]
"src/modulex_integrations/tools/google_cloud/tests/test_google_cloud.py" = ["E501"]
# hootsuite manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/hootsuite/manifest.py" = ["E501"]
"src/modulex_integrations/tools/hootsuite/tools.py" = ["E501"]
# bloomerang manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/bloomerang/manifest.py" = ["E501"]
"src/modulex_integrations/tools/bloomerang/tools.py" = ["E501"]
# google_appsheet manifest, tools, and tests have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/google_appsheet/manifest.py" = ["E501"]
"src/modulex_integrations/tools/google_appsheet/tools.py" = ["E501"]
"src/modulex_integrations/tools/google_appsheet/tests/test_google_appsheet.py" = ["E501"]
# crunchbase manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/crunchbase/manifest.py" = ["E501"]
"src/modulex_integrations/tools/crunchbase/tools.py" = ["E501"]
# ParameterDef / Field kwargs that cannot be wrapped.
# google_ad_manager manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/google_ad_manager/manifest.py" = ["E501"]
"src/modulex_integrations/tools/google_ad_manager/tools.py" = ["E501"]
# google_docs manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/google_docs/manifest.py" = ["E501"]
"src/modulex_integrations/tools/google_docs/tools.py" = ["E501"]
# google_maps_platform manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/google_maps_platform/manifest.py" = ["E501"]
"src/modulex_integrations/tools/google_maps_platform/tools.py" = ["E501"]
# google_merchant_center manifest, tools, and tests have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/google_merchant_center/manifest.py" = ["E501"]
"src/modulex_integrations/tools/google_merchant_center/tools.py" = ["E501"]
"src/modulex_integrations/tools/google_merchant_center/tests/test_google_merchant_center.py" = ["E501"]
# google_my_business manifest and tools have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/google_my_business/manifest.py" = ["E501"]
"src/modulex_integrations/tools/google_my_business/tools.py" = ["E501"]
# google_forms manifest, tools, and tests have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
# google_forms outputs mirror upstream Google Forms API camelCase field
# names (formId, responderUri, revisionId, documentTitle, etc.).
"src/modulex_integrations/tools/google_forms/manifest.py" = ["E501"]
"src/modulex_integrations/tools/google_forms/tools.py" = ["E501"]
"src/modulex_integrations/tools/google_forms/tests/test_google_forms.py" = ["E501"]
"src/modulex_integrations/tools/google_forms/outputs.py" = ["N815"]
# google_search_console manifest and tools have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/google_search_console/manifest.py" = ["E501"]
"src/modulex_integrations/tools/google_search_console/tools.py" = ["E501"]
# google_contacts manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/google_contacts/manifest.py" = ["E501"]
"src/modulex_integrations/tools/google_contacts/tools.py" = ["E501"]
# mixpanel manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/mixpanel/manifest.py" = ["E501"]
"src/modulex_integrations/tools/mixpanel/tools.py" = ["E501"]
# pipedrive manifest, tools, and tests have long description string
# literals in ParameterDef / Field kwargs and credential guard lines
# that cannot be wrapped.
"src/modulex_integrations/tools/pipedrive/manifest.py" = ["E501"]
"src/modulex_integrations/tools/pipedrive/tools.py" = ["E501"]
"src/modulex_integrations/tools/pipedrive/tests/test_pipedrive.py" = ["E501"]
# ahrefs manifest, tools, outputs, and tests have long description string
# literals in ParameterDef / Field kwargs and credential guard lines
# that cannot be wrapped.
"src/modulex_integrations/tools/ahrefs/manifest.py" = ["E501"]
"src/modulex_integrations/tools/ahrefs/tools.py" = ["E501"]
"src/modulex_integrations/tools/ahrefs/outputs.py" = ["E501"]
"src/modulex_integrations/tools/ahrefs/tests/test_ahrefs.py" = ["E501"]
# google_tasks manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/google_tasks/manifest.py" = ["E501"]
"src/modulex_integrations/tools/google_tasks/tools.py" = ["E501"]
# mintlify manifest, tools, and tests have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/mintlify/manifest.py" = ["E501"]
"src/modulex_integrations/tools/mintlify/tools.py" = ["E501"]
"src/modulex_integrations/tools/mintlify/tests/test_mintlify.py" = ["E501"]
# segment manifest, tools, and tests have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/segment/manifest.py" = ["E501"]
"src/modulex_integrations/tools/segment/tools.py" = ["E501"]
"src/modulex_integrations/tools/segment/tests/test_segment.py" = ["E501"]
# etsy manifest and tests have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/etsy/manifest.py" = ["E501"]
"src/modulex_integrations/tools/etsy/tests/test_etsy.py" = ["E501"]
# dropbox manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/dropbox/manifest.py" = ["E501"]
"src/modulex_integrations/tools/dropbox/tools.py" = ["E501"]
# fal_ai manifest, tools, and tests have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/fal_ai/manifest.py" = ["E501"]
"src/modulex_integrations/tools/fal_ai/tools.py" = ["E501"]
"src/modulex_integrations/tools/fal_ai/tests/test_fal_ai.py" = ["E501"]
# cal_com manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/cal_com/manifest.py" = ["E501"]
"src/modulex_integrations/tools/cal_com/tools.py" = ["E501"]
# microsoft_sql_server manifest has long description string literals in
# ParameterDef / EnvVar kwargs that cannot be wrapped.
"src/modulex_integrations/tools/microsoft_sql_server/manifest.py" = ["E501"]
# amazon_alexa manifest, tools, outputs, and tests have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/amazon_alexa/manifest.py" = ["E501"]
"src/modulex_integrations/tools/amazon_alexa/tools.py" = ["E501"]
"src/modulex_integrations/tools/amazon_alexa/outputs.py" = ["E501"]
"src/modulex_integrations/tools/amazon_alexa/tests/test_amazon_alexa.py" = ["E501"]
# microsoft_dynamics_365_sales manifest, tools, and tests have long description
# string literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/microsoft_dynamics_365_sales/manifest.py" = ["E501"]
"src/modulex_integrations/tools/microsoft_dynamics_365_sales/tools.py" = ["E501"]
"src/modulex_integrations/tools/microsoft_dynamics_365_sales/tests/test_microsoft_dynamics_365_sales.py" = ["E501"]
# microsoft_power_bi manifest and tools have long description string
# literals in ParameterDef / Field kwargs and credential guard lines
# that cannot be wrapped.
"src/modulex_integrations/tools/microsoft_power_bi/manifest.py" = ["E501"]
"src/modulex_integrations/tools/microsoft_power_bi/tools.py" = ["E501"]
# microsoft_365_people manifest, tools, and tests have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/microsoft_365_people/manifest.py" = ["E501"]
"src/modulex_integrations/tools/microsoft_365_people/tools.py" = ["E501"]
"src/modulex_integrations/tools/microsoft_365_people/tests/test_microsoft_365_people.py" = ["E501"]
# literals in ParameterDef / Field kwargs that cannot be wrapped.
# amazon_selling_partner manifest, tools, and tests have long description
# string literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/amazon_selling_partner/manifest.py" = ["E501"]
"src/modulex_integrations/tools/amazon_selling_partner/tools.py" = ["E501"]
# freshdesk manifest, tools, and tests have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/freshdesk/manifest.py" = ["E501"]
"src/modulex_integrations/tools/freshdesk/tools.py" = ["E501"]
"src/modulex_integrations/tools/freshdesk/tests/test_freshdesk.py" = ["E501"]
# browser_use manifest, tools, and tests have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/browser_use/manifest.py" = ["E501"]
"src/modulex_integrations/tools/browser_use/tools.py" = ["E501"]
"src/modulex_integrations/tools/browser_use/tests/test_browser_use.py" = ["E501"]
# datadog manifest, tools, and tests have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/datadog/manifest.py" = ["E501"]
"src/modulex_integrations/tools/datadog/tools.py" = ["E501"]
"src/modulex_integrations/tools/datadog/tests/test_datadog.py" = ["E501"]
# typeform manifest, tools, and tests have long description string literals in
# ParameterDef / Field kwargs and mock JSON that cannot be wrapped.
"src/modulex_integrations/tools/typeform/manifest.py" = ["E501"]
"src/modulex_integrations/tools/typeform/tools.py" = ["E501"]
"src/modulex_integrations/tools/typeform/tests/test_typeform.py" = ["E501"]
# microsoft_entra_id manifest, tools, and tests have long description string
# literals in ParameterDef / Field kwargs and credential guard lines
# that cannot be wrapped.
"src/modulex_integrations/tools/microsoft_entra_id/manifest.py" = ["E501"]
"src/modulex_integrations/tools/microsoft_entra_id/tools.py" = ["E501"]
"src/modulex_integrations/tools/microsoft_entra_id/tests/test_microsoft_entra_id.py" = ["E501"]
# luma manifest, tools, and tests have long description string literals in
# ParameterDef / Field kwargs and credential guard lines that cannot be wrapped.
"src/modulex_integrations/tools/luma/manifest.py" = ["E501"]
"src/modulex_integrations/tools/luma/tools.py" = ["E501"]
"src/modulex_integrations/tools/luma/tests/test_luma.py" = ["E501"]
# azure_storage manifest, tools, and tests have long description string
# literals in ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/azure_storage/manifest.py" = ["E501"]
"src/modulex_integrations/tools/azure_storage/tools.py" = ["E501"]
"src/modulex_integrations/tools/azure_storage/tests/test_azure_storage.py" = ["E501"]
# insightly manifest, tools, and tests have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/insightly/manifest.py" = ["E501"]
"src/modulex_integrations/tools/insightly/tools.py" = ["E501"]
"src/modulex_integrations/tools/insightly/tests/test_insightly.py" = ["E501"]
# pagerduty manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/pagerduty/manifest.py" = ["E501"]
"src/modulex_integrations/tools/pagerduty/tools.py" = ["E501"]
# browserbase manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/browserbase/manifest.py" = ["E501"]
"src/modulex_integrations/tools/browserbase/tools.py" = ["E501"]
# shopify_partner manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/shopify_partner/manifest.py" = ["E501"]
"src/modulex_integrations/tools/shopify_partner/tools.py" = ["E501"]
# instructure_canvas manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/instructure_canvas/manifest.py" = ["E501"]
"src/modulex_integrations/tools/instructure_canvas/tools.py" = ["E501"]
# gong manifest and tools have long description string literals in
# ParameterDef / Field kwargs and credential guard lines that cannot be wrapped.
"src/modulex_integrations/tools/gong/manifest.py" = ["E501"]
"src/modulex_integrations/tools/gong/tools.py" = ["E501"]
# postgrid manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/postgrid/manifest.py" = ["E501"]
"src/modulex_integrations/tools/postgrid/tools.py" = ["E501"]
# hunter manifest, tools, and tests have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/hunter/manifest.py" = ["E501"]
"src/modulex_integrations/tools/hunter/tools.py" = ["E501"]
"src/modulex_integrations/tools/hunter/tests/test_hunter.py" = ["E501"]
# square manifest, tools, and tests have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/square/manifest.py" = ["E501"]
"src/modulex_integrations/tools/square/tools.py" = ["E501"]
"src/modulex_integrations/tools/square/tests/test_square.py" = ["E501"]
# heygen manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/heygen/manifest.py" = ["E501"]
"src/modulex_integrations/tools/heygen/tools.py" = ["E501"]
# livestorm manifest and tools have long description string literals in
# ParameterDef / Field kwargs and credential guard lines that cannot be wrapped.
"src/modulex_integrations/tools/livestorm/manifest.py" = ["E501"]
"src/modulex_integrations/tools/livestorm/tools.py" = ["E501"]
# yelp manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/yelp/manifest.py" = ["E501"]
"src/modulex_integrations/tools/yelp/tools.py" = ["E501"]
# motion manifest, tools, and tests have long description string literals in
# ParameterDef / Field kwargs and credential guard lines that cannot be wrapped.
"src/modulex_integrations/tools/motion/manifest.py" = ["E501"]
"src/modulex_integrations/tools/motion/tools.py" = ["E501"]
"src/modulex_integrations/tools/motion/tests/test_motion.py" = ["E501"]
# coinmarketcap manifest and tools have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/coinmarketcap/manifest.py" = ["E501"]
"src/modulex_integrations/tools/coinmarketcap/tools.py" = ["E501"]
# woocommerce manifest, tools, and tests have long description string literals in
# ParameterDef / Field kwargs that cannot be wrapped.
"src/modulex_integrations/tools/woocommerce/manifest.py" = ["E501"]
"src/modulex_integrations/tools/woocommerce/tools.py" = ["E501"]
"src/modulex_integrations/tools/woocommerce/tests/test_woocommerce.py" = ["E501"]
[tool.mypy]
python_version = "3.12"
strict = true
warn_unused_configs = true
files = ["src/modulex_integrations"]