-
Notifications
You must be signed in to change notification settings - Fork 380
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (23 loc) · 795 Bytes
/
pyproject.toml
File metadata and controls
30 lines (23 loc) · 795 Bytes
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
[project]
name = "sqlmesh-tests"
dynamic = ["version", "dependencies"]
description = "Tests for SQLMesh"
authors = [{ name = "TobikoData Inc.", email = "engineering@tobikodata.com" }]
license = { text = "Apache License 2.0" }
[project.urls]
Homepage = "https://sqlmesh.com/"
Documentation = "https://sqlmesh.readthedocs.io/en/stable/"
Repository = "https://github.com/TobikoData/sqlmesh"
Issues = "https://github.com/TobikoData/sqlmesh/issues"
[build-system]
requires = ["setuptools", "setuptools_scm", "toml"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-dir]
sqlmesh_tests = ""
[tool.setuptools_scm]
root = "../"
version_file = "_version.py"
fallback_version = "0.0.0"
local_scheme = "no-local-version"
[tool.setuptools.package-data]
"*" = ["fixtures/**", "*.toml"]