-
-
Notifications
You must be signed in to change notification settings - Fork 934
/
pyproject.toml
206 lines (185 loc) · 5.08 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "geopandas"
dynamic = ["version"]
authors = [{ name = "Kelsey Jordahl", email = "[email protected]" }]
maintainers = [{ name = "GeoPandas contributors" }]
license = { text = "BSD 3-Clause" }
description = "Geographic pandas extensions"
keywords = ["GIS", "cartography", "pandas", "shapely"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: GIS",
]
requires-python = ">=3.10"
dependencies = [
"numpy >= 1.24",
"pyogrio >= 0.7.2",
"packaging",
"pandas >= 2.0.0",
"pyproj >= 3.5.0",
"shapely >= 2.0.0",
]
[project.optional-dependencies]
all = [
"psycopg-binary>=3.1.0",
"SQLAlchemy>=2.0",
"geopy",
"matplotlib>=3.7",
"mapclassify>=2.5",
"xyzservices",
"folium", # >=0.12 (implied minimum version, but older versions may work)
"GeoAlchemy2",
"pyarrow>=10.0.0",
]
# Minimum supported additional deps, not installed as part of `all` extra
# (useful to track for bumping minimum dep versions)
# fiona>=1.8.21
# scipy>=1.10.0
dev = [
"pytest>=3.1.0",
"pytest-cov",
"pytest-xdist",
"codecov",
"pre-commit",
"ruff",
]
[project.readme]
text = """\
GeoPandas is a project to add support for geographic data to
`pandas`_ objects.
The goal of GeoPandas is to make working with geospatial data in
python easier. It combines the capabilities of `pandas`_ and `shapely`_,
providing geospatial operations in pandas and a high-level interface
to multiple geometries to shapely. GeoPandas enables you to easily do
operations in python that would otherwise require a spatial database
such as PostGIS.
.. _pandas: https://pandas.pydata.org
.. _shapely: https://shapely.readthedocs.io/en/latest/
"""
content-type = "text/x-rst"
[project.urls]
Home = "https://geopandas.org"
Repository = "https://github.com/geopandas/geopandas"
[tool.setuptools.packages.find]
include = ["geopandas", "geopandas.*"]
[tool.setuptools.package-data]
geopandas = [
"tests/data/null_geom.geojson"
]
[tool.pytest.ini_options]
markers = ["web: tests that need network connectivity"]
xfail_strict = true
filterwarnings = [
"ignore:distutils Version classes are deprecated.*:DeprecationWarning:pandas.*",
"ignore:distutils Version classes are deprecated.*:DeprecationWarning:numpy.*",
"ignore:The geopandas.dataset module is deprecated",
# pytest-xdist incompatibility with pytest-cov
"ignore:The --rsyncdir command line argument:DeprecationWarning",
# dateutil incompatibility with python 3.12 (https://github.com/dateutil/dateutil/issues/1284)
"ignore:datetime.datetime.utcfromtimestamp:DeprecationWarning:dateutil",
"ignore:Cannot set the CRS, falling back to None:UserWarning:geopandas",
]
[tool.ruff]
line-length = 88
extend-exclude = ["doc/*", "benchmarks/*", "versioneer.py", "geopandas/_version.py"]
[tool.ruff.lint]
select = [
# pyflakes
"F",
# pycodestyle
"E",
"W",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-debugger
"T10",
# flake8-simplify
# "SIM",
# pylint
"PLC",
"PLE",
"PLR",
"PLW",
# misc lints
"PIE",
# implicit string concatenation
"ISC",
# type-checking imports
"TCH",
# comprehensions
"C4",
# Ruff-specific rules
"RUF",
# isort
"I",
]
ignore = [
### Intentionally disabled
# module level import not at top of file
"E402",
# do not assign a lambda expression, use a def
"E731",
# mutable-argument-default
"B006",
# unused-loop-control-variable
"B007",
# get-attr-with-constant
"B009",
# Only works with python >=3.10
"B905",
# dict literals
"C408",
# Too many arguments to function call
"PLR0913",
# Too many returns
"PLR0911",
# Too many branches
"PLR0912",
# Too many statements
"PLR0915",
# Magic number
"PLR2004",
# Redefined loop name
"PLW2901",
# Global statements are discouraged
"PLW0603",
# compare-to-empty-string
"PLC1901",
### Additional checks that don't pass yet
# Useless statement
"B018",
# Within an except clause, raise exceptions with ...
"B904",
# Consider `elif` instead of `else` then `if` to remove indentation level
"PLR5501",
# collection-literal-concatenation
"RUF005",
# Mutable class attributes should be annotated with `typing.ClassVar`,
"RUF012"
]
[tool.ruff.lint.per-file-ignores]
"geopandas/__init__.py" = ["F401", "I"]
[tool.ruff.lint.isort]
extra-standard-library = ["packaging"]
section-order = [
"future",
"standard-library",
"third-party",
"geo",
"first-party",
"local-folder",
"testing"
]
[tool.ruff.lint.isort.sections]
"geo" = ["shapely", "pyproj"]
"testing" = ["pytest", "pandas.testing", "numpy.testing", "geopandas.tests", "geopandas.testing"]