Skip to content

Commit 99afe06

Browse files
committed
Tidy a few other "Rtree" -> "rtree" instances
1 parent 3b0f62e commit 99afe06

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Rtree: Spatial indexing for Python
22

33
![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)
55

66

77
Rtree is a [ctypes](https://docs.python.org/3/library/ctypes.html) Python wrapper of [libspatialindex](https://libspatialindex.org/) that provides a

docs/source/install.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ensure that applications can find it at startup time.
2222

2323
Rtree can be easily installed via pip::
2424

25-
$ pip install Rtree
25+
$ pip install rtree
2626

2727
or by running in a local source directory::
2828

@@ -39,8 +39,8 @@ The Windows DLLs of `libspatialindex`_ are pre-compiled in
3939
windows installers that are available from `PyPI`_. Installation on Windows
4040
is as easy as::
4141

42-
pip install Rtree
42+
pip install rtree
4343

4444

45-
.. _`PyPI`: https://pypi.org/project/Rtree/
45+
.. _`PyPI`: https://pypi.org/project/rtree/
4646
.. _`libspatialindex`: https://libspatialindex.org

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def finalize_options(self) -> None:
5757

5858
# See pyproject.toml for other project metadata
5959
setup(
60-
name="Rtree",
60+
name="rtree",
6161
distclass=BinaryDistribution,
6262
cmdclass={"bdist_wheel": bdist_wheel, "install": InstallPlatlib},
6363
)

0 commit comments

Comments
 (0)