-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (40 loc) · 972 Bytes
/
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
[project]
name = "datakitcli"
version = "0.2.1"
description = "A command line client for running datakits"
requires-python = ">=3.11"
authors = [
{ name = "Varvara Efremova", email = "[email protected]" },
{ name = "James Wilmot", email = "[email protected]" },
]
readme = "README.md"
dependencies = [
"typer >= 0.12, < 1",
"docker >= 7.1.0, < 8",
"matplotlib >= 3.9.1, < 4",
"tornado", # Required for rendering interactive plots
"datakitpy >= 0.2.1",
"tabulate",
]
[project.scripts]
dk = "cli.main:app"
[project.urls]
"Homepage" = "https://github.com/opendatastudio/cli"
"Bug Tracker" = "https://github.com/opendatastudio/cli/issues"
[project.optional-dependencies]
development = [
"pre-commit",
"build",
]
all = ["datakitcli[development]"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 79
include = '\.pyi?$'
force-exclude = '''
/(
\.git
)/
'''