generated from intersystems-community/iris-interoperability-template
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (54 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
63 lines (54 loc) · 1.91 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
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "iris_pex_embedded_python"
version = "3.5.6"
description = "Iris Interoperability based on Embedded Python"
readme = "README.md"
authors = [
{ name = "grongier", email = "guillaume.rongier@intersystems.com" },
]
keywords = ["iris", "intersystems", "python", "embedded"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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 :: Utilities"
]
dependencies = [
"pydantic>=2.0.0",
"xmltodict>=0.12.0",
"iris-embedded-python-wrapper>=0.0.6",
"jsonpath-ng>=1.7.0",
"debugpy>=1.8.0",
"requests>=2.24.0"
]
license = { file = "LICENSE" }
[project.urls]
homepage = "https://github.com/grongierisc/interoperability-embedded-python"
documentation = "https://github.com/grongierisc/interoperability-embedded-python/blob/master/README.md"
repository = "https://github.com/grongierisc/interoperability-embedded-python"
issues = "https://github.com/grongierisc/interoperability-embedded-python/issues"
[project.scripts]
iop = "iop._cli:main"
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests*"]
[tool.setuptools.package-data]
"*" = ["*.cls"]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "class"
testpaths = ["src/tests"]
markers = [
"unit: pure unit test - no IRIS instance required (all IRIS calls mocked)",
"e2e_local: end-to-end test requiring a local IRIS instance",
"e2e_remote: end-to-end test requiring a remote IRIS instance via REST API",
]