-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
72dd9eb
commit a8c0bef
Showing
8 changed files
with
22 additions
and
545 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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="""[email protected]""", | ||
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.""", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ | |
author_email="[email protected]", | ||
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", | ||
|
@@ -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...... |