-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
50 lines (45 loc) · 1.08 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "ibis-analytics"
version = "0.12.0"
authors = [{ name = "Cody", email = "cody@dkdc.dev" }]
description = "Ibis analytics with Ibis"
readme = "readme.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
# secret management
'python-dotenv',
# http
'zulip',
'httpx',
'requests',
# cli
'typer',
# cloud
'gcsfs',
# data
'ibis-framework[duckdb,polars,clickhouse,deltalake]==9.3.0',
# visualization
'plotly',
'great-tables',
# dashboards and apps
'shiny>=1.0.0',
'shinywidgets>=0.3.3',
'shinyswatch>=0.7.0',
]
[project.urls]
"Homepage" = "https://github.com/ibis-project/ibis-analytics"
"Bug Tracker" = "https://github.com/ibis-project/ibis-analytics/issues"
[project.scripts]
ia = "ibis_analytics.cli:app"
[tool.ruff]
extend-include = ["*.ipynb"]