-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (51 loc) · 1.31 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kamu"
dynamic = ["version"]
description = "Kamu decentralized data supply chain client library"
readme = "README.md"
authors = [{ name = "Kamu Data Inc.", email = "dev@kamu.dev" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = [
"kamu",
"opendatafabric",
"data",
"decentralized",
"web3",
"AI",
"ML",
]
dependencies = ["adbc_driver_manager", "adbc_driver_flightsql", "pyarrow"]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://kamu.dev"
Documentation = "https://docs.kamu.dev"
Repository = "https://github.com/kamu-data/kamu-client-python"
Issues = "https://github.com/kamu-data/kamu-client-python/issues"
Changelog = "https://github.com/kamu-data/kamu-client-python/blob/master/CHANGELOG.md"
[tool.setuptools.dynamic]
version = { attr = "kamu.__version__" }
[project.optional-dependencies]
jupyter-autoviz = ["autovizwidget"]
jupyter-sql = []
spark = ["livy"]
dev = [
"black",
"build",
"flake8",
"isort",
"pandas",
"pip-tools",
"pylint",
"pytest",
"twine",
]
[tool.isort]
profile = "black"