-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
127 lines (103 loc) · 2.94 KB
/
Copy pathpyproject.toml
File metadata and controls
127 lines (103 loc) · 2.94 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["eomaps", "eomaps.scripts", "eomaps.qtcompanion", "eomaps.qtcompanion.widgets"]
[tool.setuptools.package-data]
eomaps = ["logo.png", "NE_features.json", "qtcompanion/icons/*"]
[project]
name = "eomaps"
version = "8.4"
description = "A library to create interactive maps of geographical datasets."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
authors = [
{ name="Raphael Quast", email="raphael.quast@geo.tuwien.ac.at" },
]
keywords = ["Visualization", "Plotting", "Maps", "Geographical Data"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Framework :: Matplotlib",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"numpy",
"scipy",
"matplotlib>=3.4",
"cartopy>=0.20.0",
"pyproj",
"packaging",
"click"
]
[project.optional-dependencies]
all = ["eomaps[io, classify, wms, shade, gui]"]
all_nogui = ["eomaps[io, classify, wms, shade]"]
io = [
"pandas",
"geopandas",
"xarray",
"netcdf4",
"rioxarray"
]
classify = ["mapclassify"]
wms = [
"owslib",
"requests",
]
shade = [
"datashader",
"dask[dataframe]", # to address https://github.com/dask/dask/issues/10995
]
gui = [
"PyQt5",
"qtpy"
]
test = [
"eomaps[io, classify, wms, shade, gui, test]",
"pytest",
"pytest-mpl"
]
docs = [
"docutils",
"sphinx",
"sphinx-copybutton",
"sphinx-design",
"myst-nb",
"pydata-sphinx-theme",
"myst-sphinx-gallery==0.2.2"
]
[project.scripts]
eomaps = "eomaps.scripts.open:cli"
[project.urls]
Documentation = "https://eomaps.readthedocs.io/"
Repository = "https://github.com/raphaelquast/eomaps"
[tool.pytest.ini_options]
mpl-use-full-test-name = "True"
mpl-default-style = "default"
mpl-results-path = "img_comparison_results"
filterwarnings = [
"ignore:Downloading*",
"ignore:Passing a SingleBlockManager to Series is deprecated *:DeprecationWarning",
"ignore:Passing a BlockManager to GeoDataFrame is deprecated *:DeprecationWarning",
"ignore:Passing a SingleBlockManager to GeoSeries is deprecated *:DeprecationWarning",
"ignore:Pyarrow will become a required dependency of pandas *:DeprecationWarning",
"ignore:Geometry is in a geographic CRS. Results from *:UserWarning",
"ignore:Back azimuth is being returned by default *:UserWarning",
"ignore:Conversion of an array with ndim > 0:DeprecationWarning"
]
[tool.codespell]
ignore-words-list = [
"vor", # For voronoi, not "for"
"ot", # abbreviation for offset-top
]
skip = [
"eomaps/webmap_containers.py", # Non-English languages in docstrings
]
ignore-regex = [
"[A-Za-z0-9+/]{100,}" # Ignore long base64 strings
]