-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.07 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
[project]
name = "exasol-udf-mock-python"
version = "0.5.0"
description = "Mocking framework for Exasol Python UDFs"
authors = [{ name = "Torsten Kilias", email = "torsten.kilias@exasol.com" }]
requires-python = ">=3.10.0,<4.0"
readme = "README.rst"
license = "MIT"
keywords = [
"exasol",
"udf",
"mock",
"testing",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"pandas>=2.2.3,<3",
"numpy>=1.26.4,<3",
]
dynamic = ["dependencies"]
[project.urls]
repository = "https://github.com/exasol/udf-mock-python"
homepage = "https://github.com/exasol/udf-mock-python"
[dependency-groups]
dev = [
"exasol-toolbox>=6.1.0,<7",
"pytest>=8.2.2,<9",
"pytest-cov>=5.0.0,<6",
]
[tool.poetry]
requires-poetry = ">=2.3.0"
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"