-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (46 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
49 lines (46 loc) · 1.05 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "feldera"
readme = "README.md"
description = "The feldera python client"
version = "0.263.0"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ "name" = "Feldera Team", "email" = "dev@feldera.com" },
]
keywords = [
"feldera",
"python",
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
dependencies = [
"requests",
"pandas>=2.1.2",
"typing-extensions",
"numpy>=2.2.4",
"pretty-errors",
"ruff>=0.6.9",
"PyJWT>=2.8.0",
]
[project.urls]
Homepage = "https://www.feldera.com"
Documentation = "https://docs.feldera.com/python"
Repository = "https://github.com/feldera/feldera"
Issues = "https://github.com/feldera/feldera/issues"
[dependency-groups]
dev = [
"pytest-timeout>=2.3.1",
"pytest-xdist>=3.8.0",
"pytest>=8.3.5",
"sphinx-rtd-theme==2.0.0",
"sphinx==7.3.7",
"simplejson==3.20.1",
]
[tool.pytest.ini_options]
pythonpath = "feldera"