forked from raphaelquast/EOmaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
105 lines (84 loc) · 2.53 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
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
[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.2.1"
description = "A library to create interactive maps of geographical datasets."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
authors = [
{ name="Raphael Quast", email="[email protected]" },
]
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",
"descartes",
"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"
]
[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"
]