File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Rtree: Spatial indexing for Python
2
2
3
3
![ Build] ( https://github.com/Toblerity/rtree/workflows/Build/badge.svg )
4
- [ ![ PyPI version] ( https://badge.fury.io/py/Rtree .svg )] ( https://badge.fury.io/py/Rtree )
4
+ [ ![ PyPI version] ( https://badge.fury.io/py/rtree .svg )] ( https://badge.fury.io/py/rtree )
5
5
6
6
7
7
Rtree is a [ ctypes] ( https://docs.python.org/3/library/ctypes.html ) Python wrapper of [ libspatialindex] ( https://libspatialindex.org/ ) that provides a
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ ensure that applications can find it at startup time.
22
22
23
23
Rtree can be easily installed via pip::
24
24
25
- $ pip install Rtree
25
+ $ pip install rtree
26
26
27
27
or by running in a local source directory::
28
28
@@ -39,8 +39,8 @@ The Windows DLLs of `libspatialindex`_ are pre-compiled in
39
39
windows installers that are available from `PyPI `_. Installation on Windows
40
40
is as easy as::
41
41
42
- pip install Rtree
42
+ pip install rtree
43
43
44
44
45
- .. _`PyPI` : https://pypi.org/project/Rtree /
45
+ .. _`PyPI` : https://pypi.org/project/rtree /
46
46
.. _`libspatialindex` : https://libspatialindex.org
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ def finalize_options(self) -> None:
57
57
58
58
# See pyproject.toml for other project metadata
59
59
setup (
60
- name = "Rtree " ,
60
+ name = "rtree " ,
61
61
distclass = BinaryDistribution ,
62
62
cmdclass = {"bdist_wheel" : bdist_wheel , "install" : InstallPlatlib },
63
63
)
You can’t perform that action at this time.
0 commit comments