forked from feldera/feldera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (36 loc) · 913 Bytes
/
pyproject.toml
File metadata and controls
37 lines (36 loc) · 913 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "feldera"
readme = "README.md"
description = "The feldera python client"
version = "0.34.1"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [
{ "name" = "Abhinav", "email" = "abhinav.gyawali@feldera.com" },
]
keywords = [
"feldera",
"python",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
dependencies = [
"requests",
"pandas",
"typing-extensions",
"numpy<2",
"pretty-errors",
"ruff>=0.6.9",
]
[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"