-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.14 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "ibis-bench"
version = "0.3.0"
authors = [{ name = "Cody", email = "cody@dkdc.dev" }]
description = "benchmarking with Ibis"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
# data stuff
'ibis-framework[duckdb,datafusion,polars] == 9.3.0', # @ git+https://github.com/ibis-project/ibis',
#'ibis-framework @ git+https://github.com/ibis-project/ibis',
#'duckdb==1.0.0',
#'datafusion==40.1.0',
#'polars==1.5.0',
# other stuff
'typer',
'python-dotenv',
'psutil',
'gcsfs',
'plotly',
'kaleido',
'streamlit',
'great-tables',
]
[project.urls]
"Homepage" = "https://github.com/lostmygithubaccount/ibis-bench"
"Bug Tracker" = "https://github.com/lostmygithubaccount/ibis-bench/issues"
[project.scripts]
bench = "ibis_bench.cli:app"
bench2 = "ibis_bench.cli2:app"
[tool.ruff]
extend-include = ["*.ipynb"]