Skip to content

Commit

Permalink
Renamed from PyQuadTree to Pyqtree
Browse files Browse the repository at this point in the history
  • Loading branch information
karimbahgat committed Jun 3, 2015
1 parent 72dd9eb commit a8c0bef
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 545 deletions.
16 changes: 8 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PyQuadTree
==========
Pyqtree
=======

PyQuadTree is a pure Python spatial index for GIS or rendering usage. It
Pyqtree is a pure Python spatial index for GIS or rendering usage. It
stores and quickly retrieves items from a 2x2 rectangular grid area, and
grows in depth and detail as more items are added. The actual quad tree
implementation is adapted from `Matt Rasmussen's compbio
Expand All @@ -16,13 +16,13 @@ Python 2 and 3.
Dependencies
------------

PyQuadTree is written in pure Python and has no dependencies.
Pyqtree is written in pure Python and has no dependencies.

Installing It
-------------

Installing PyQuadTree can be done by opening your terminal or
commandline and typing:
Installing Pyqtree can be done by opening your terminal or commandline
and typing:

::

Expand Down Expand Up @@ -73,8 +73,8 @@ main usage!
More Information:
-----------------

- `Home Page <http://github.com/karimbahgat/PyQuadTree>`__
- `API Documentation <http://pythonhosted.org/PyQuadTree>`__
- `Home Page <http://github.com/karimbahgat/Pyqtree>`__
- `API Documentation <http://pythonhosted.org/Pyqtree>`__

License:
--------
Expand Down
522 changes: 0 additions & 522 deletions build/doc/index.html

Large diffs are not rendered by default.

Binary file added dist/Pyqtree-0.22.zip
Binary file not shown.
Binary file added dist/Pyqtree-0.23.zip
Binary file not shown.
14 changes: 7 additions & 7 deletions pyqtree.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
# PyQuadTree
# Pyqtree
PyQuadTree is a pure Python spatial index for GIS or rendering usage.
Pyqtree is a pure Python spatial index for GIS or rendering usage.
It stores and quickly retrieves items from a 2x2 rectangular grid area,
and grows in depth and detail as more items are added.
The actual quad tree implementation is adapted from
Expand All @@ -16,12 +16,12 @@
## Dependencies
PyQuadTree is written in pure Python and has no dependencies.
Pyqtree is written in pure Python and has no dependencies.
## Installing It
Installing PyQuadTree can be done by opening your terminal or commandline and typing:
Installing Pyqtree can be done by opening your terminal or commandline and typing:
pip install pyqtree
Expand Down Expand Up @@ -59,8 +59,8 @@
## More Information:
- [Home Page](http://github.com/karimbahgat/PyQuadTree)
- [API Documentation](http://pythonhosted.org/PyQuadTree)
- [Home Page](http://github.com/karimbahgat/Pyqtree)
- [API Documentation](http://pythonhosted.org/Pyqtree)
## License:
Expand All @@ -74,7 +74,7 @@
"""

__version__ = "0.22"
__version__ = "0.23"

#PYTHON VERSION CHECK
import sys
Expand Down
Binary file modified pyqtree.pyc
Binary file not shown.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
except: from distutils.core import setup

setup( long_description=open("README.rst").read(),
name="""PyQuadTree""",
name="""Pyqtree""",
license="""MIT""",
author="""Karim Bahgat""",
author_email="""karim.bahgat.norway@gmail.com""",
py_modules=['pyqtree'],
url="""http://github.com/karimbahgat/PyQuadTree""",
version="""0.22""",
url="""http://github.com/karimbahgat/Pyqtree""",
version="""0.23""",
keywords="""GIS spatial index quad tree""",
classifiers=['License :: OSI Approved', 'Programming Language :: Python', 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'Intended Audience :: End Users/Desktop', 'Topic :: Scientific/Engineering :: GIS'],
description="""A pure Python QuadTree spatial index for GIS or rendering usage.""",
description="""A pure Python quad tree spatial index for GIS or rendering usage.""",
)
7 changes: 3 additions & 4 deletions upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
author_email="karim.bahgat.norway@gmail.com",
license="MIT",
name="Pyqtree",
description="A pure Python QuadTree spatial index for GIS or rendering usage.",
url="http://github.com/karimbahgat/PyQuadTree",
description="A pure Python quad tree spatial index for GIS or rendering usage.",
url="http://github.com/karimbahgat/Pyqtree",
keywords="GIS spatial index quad tree",
classifiers=["License :: OSI Approved",
"Programming Language :: Python",
Expand All @@ -18,8 +18,7 @@
"Topic :: Scientific/Engineering :: GIS"],
)

pypi.generate_docs(packpath) #!! WRONG TYPE, INCLUDES VARS AND SOURCE???
pypi.generate_docs(packpath)
#pypi.upload_test(packpath)
pypi.upload(packpath)

## UPDATE/REPLACE ON PYPI W NEW NAME......

0 comments on commit a8c0bef

Please sign in to comment.