forked from xqlsystems/xarray-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (80 loc) · 2.03 KB
/
Copy pathpyproject.toml
File metadata and controls
89 lines (80 loc) · 2.03 KB
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
84
85
86
87
88
89
[project]
name = "xarray_sql"
dynamic = ["version"]
description = "Querry Xarray with SQL."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "Apache-2.0"}
authors = [
{name = "Alexander Merose", email = "al@merose.com"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Database :: Front-Ends",
]
dependencies = [
"datafusion>=47.0.0",
"xarray>=2024.7.0",
]
[project.optional-dependencies]
test = [
"pytest",
"xarray[io]",
"gcsfs",
"dask>=2024.8.0",
]
[project.urls]
Homepage = "https://github.com/alxmrs/xarray-sql"
Issues = "https://github.com/alxmrs/xarray-sql/issues"
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["demo", "perf_tests"]
[tool.pyink]
line-length = 80
preview = true
pyink-indentation = 2
pyink-use-majority-quotes = true
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
follow_imports = "skip"
exclude = [
"perf_tests/",
"xarray_sql.egg-info/",
"^\\.venv/",
]
# Per-module ignores for libraries without type stubs
[[tool.mypy.overrides]]
module = [
"pyarrow.*",
"datafusion.*",
"xarray.*",
]
ignore_missing_imports = true
[tool.setuptools_scm]
[dependency-groups]
dev = [
"xarray_sql[test]",
"py-spy>=0.4.0",
"pyink>=24.10.1",
"mypy>=1.11.0",
"pre-commit>=3.0.0",
"pandas-stubs>=2.2.2.240807",
]