-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.19 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "bigfunctions"
authors = [
{name = "Unytics", email = "[email protected]"},
]
description = "Supercharge BigQuery with BigFunctions"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["bigquery", "data", "analytics"]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"google-cloud-bigquery",
"google-cloud-bigquery-connection",
"google-cloud-storage",
"pyyaml",
"jinja2",
"mkdocs-material",
"mkdocs-awesome-nav",
"click",
"click-help-colors",
"cryptography",
"uv",
"google-genai",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"pre-commit>=3,<4",
]
[project.urls]
Homepage = "https://unytics.io/bigfunctions/"
Documentation = "https://unytics.io/bigfunctions/framework/"
GitHub = "https://github.com/unytics/bigfunctions"
[project.scripts]
bigfun = "bigfun.cli:cli"
[tool.setuptools]
packages = ["bigfun"]
[tool.setuptools.package-data]
bigfun = ["templates/**/*", "datastore/**/*"]
[tool.setuptools_scm]