-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (95 loc) · 2.61 KB
/
Copy pathpyproject.toml
File metadata and controls
104 lines (95 loc) · 2.61 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "apilinker"
version = "0.7.1"
description = "A universal bridge to connect, map, and automate data transfer between any two REST APIs"
readme = "README.md"
authors = [
{name = "K. Kartas", email = "kkartas@users.noreply.github.com"}
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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",
]
keywords = ["api", "integration", "connector", "data transfer", "rest"]
requires-python = ">=3.8"
dependencies = [
"httpx>=0.23.0",
"pyyaml>=6.0",
"typer>=0.7.0",
"pydantic>=2.0.0",
"croniter>=1.3.8",
"rich>=12.6.0",
"cryptography>=41.0.0",
"jsonschema>=4.18.0",
]
[project.urls]
"Homepage" = "https://github.com/kkartas/APILinker"
"Bug Tracker" = "https://github.com/kkartas/APILinker/issues"
"Documentation" = "https://apilinker.readthedocs.io/"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
"types-croniter",
"types-PyYAML",
"black==25.1.0",
"bump-my-version>=0.18.0",
]
mq = [
"pika>=1.3.0",
"redis>=5.0.0",
"boto3>=1.28.0",
"kafka-python>=2.0.2",
]
docs = [
"mkdocs>=1.5.0",
"mkdocs-material>=9.5.0",
"mkdocstrings[python]>=0.24.0",
"mkdocs-minify-plugin>=0.7.0",
"mkdocs-git-revision-date-localized-plugin>=1.2.0",
]
webhooks = [
"fastapi>=0.100.0",
"uvicorn>=0.23.0",
"pyjwt>=2.8.0",
]
[project.scripts]
apilinker = "apilinker.cli:app"
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["apilinker"]
omit = [
"apilinker/connectors/*",
"apilinker/cli.py",
"apilinker/core/security.py",
"apilinker/core/scheduler.py",
"apilinker/core/async_connector.py",
"apilinker/core/secrets.py", # Requires optional cloud SDK dependencies
"apilinker/core/observability.py", # Requires optional OpenTelemetry dependency
"apilinker/core/webhooks.py", # Requires optional FastAPI/uvicorn dependencies
]
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
disallow_incomplete_defs = false