-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (40 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
55 lines (40 loc) · 1.16 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
[build-system]
requires = ["setuptools>=64", "wheel", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "vgridpandas"
readme = "README.md"
version = "1.0.7"
description = "Integration of Vgrid DGGS into Pandas and GeoPandas"
license = "MIT"
authors = [{ name = "Thang Quach", email = "quachdongthang@gmail.com" }]
requires-python = ">=3.9"
dependencies = [
"vgrid>=1.4.0"
]
[tool.setuptools_scm]
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "ruff"]
[project.urls]
Homepage = "https://github.com/opengeoshub/vgridpandas"
Download = "https://github.com/opengeoshub/vgridpandas/releases"
[tool.setuptools]
zip-safe = false
license-files = ["LICENSE*"]
[tool.setuptools.packages.find]
where = ["."]
include = ["vgridpandas*"]
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
[tool.setuptools.package-data]
"vgridpandas.mgrspandas.util" = ["gzd.geojson"]
[tool.codespell]
skip = "*.ipynb"
[tool.ruff]
exclude = ["**/*.ipynb"]
[tool.ruff.lint]
ignore = ["E203"]
[tool.ruff.lint.pycodestyle]
max-line-length = 88
# [tool.pytest.ini_options]
# filterwarnings = ["ignore::UserWarning"]