-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
62 lines (54 loc) · 1.42 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "xvec"
dynamic = ["version"]
authors = [
{name = "Martin Fleischmann", email = "[email protected]"},
{name = "Benoît Bovy", email = "[email protected]"},
]
maintainers = [
{name = "Xvec contributors"},
]
license = {text = "MIT"}
description = "Vector data cubes for Xarray"
keywords = ["GIS", "cartography", "pandas", "shapely"]
readme = "Readme.md"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: GIS",
]
requires-python = ">=3.9"
dependencies = [
"xarray >= 2022.12.0",
"pyproj >= 3.0.0",
"shapely >= 2.0b1",
"cf_xarray >= 0.9.2",
]
[project.urls]
Home = "https://xvec.readthedocs.io"
Repository = "https://github.com/xarray-contrib/xvec"
[tool.setuptools.packages.find]
include = [
"xvec",
"xvec.*",
]
[tool.coverage.run]
omit = ["xvec/tests/*"]
[tool.coverage.report]
exclude_lines = [
"except ImportError",
"except PackageNotFoundError",
"if TYPE_CHECKING:"
]
[tool.ruff]
line-length = 88
exclude = ["doc"]
[tool.ruff.lint]
ignore = ['E501', 'Q000', 'Q001', 'Q002', 'Q003', 'W191']
select = ["E", "F", "W", "I", "UP", "B", "A", "C4", "Q"]