-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
83 lines (71 loc) · 2.05 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "malloy"
version = "2024.1098-dev"
description = "Malloy is an experimental language for describing data relationships and transformations"
readme = "README.md"
# authors = [{name="", email=""}]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
keywords = ["malloy"]
dependencies = [
"duckdb>=0.8.0",
"google-cloud-bigquery",
"snowflake-connector-python>=3.6.0",
"absl-py",
]
requires-python = ">3.7"
[project.optional-dependencies]
dev = ["db-dtypes", "grpcio-tools", "pylint", "pytest", "pip-tools", "pytest-asyncio", "pandas", "toml", "yapf", "twine", "bumpver"]
ipython = ["ipykernel", "ipython", "pytest-notebook"]
[project.urls]
Documentation = "https://malloydata.dev"
Source = "https://github.com/malloydata/malloy-py"
Issues = "https://github.com/malloydata/malloy-py/issues"
Changelog = "https://github.com/malloydata/malloy-py/releases"
[project.scripts]
malloy = "malloy.__main__:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.bumpver]
current_version = "2024.1098-dev"
version_pattern = "YYYY.BUILD[-TAG]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"'
]
"src/malloy/__init__.py" = ["{version}"]
[tool.yapfignore]
ignore_patterns = [
"**/*_pb2_grpc.py",
"**/*_pb2.py",
"**/*_pb2.pyi",
".venv",
]
[tool.yapf]
based_on_style = "google"
indent_width = 2
[tool.pytest.ini_options]
nb_diff_ignore = [
"/metadata/language_info",
"/cells/*/execution_count"
]
# addopts = "--log-cli-level 10" #DEBUG
# addopts = "--log-cli-level 20" #INFO
# addopts = "--log-cli-level 30" #WARNING
# addopts = "--log-cli-level 40" #ERROR
# addopts = "--log-cli-level 50" #CRITICAL