-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathupload.py
28 lines (25 loc) · 1.24 KB
/
upload.py
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
import pipy
packpath = "pyqtree.py"
pipy.define_upload(packpath,
author="Karim Bahgat",
author_email="[email protected]",
license="MIT",
name="Pyqtree",
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",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
'Intended Audience :: End Users/Desktop',
"Topic :: Scientific/Engineering :: GIS"],
changes=["Bump to first major version",
"Fix so returns list instead of set",
"Support inserting hashable items",
],
)
pipy.generate_docs(packpath)
#pipy.upload_test(packpath)
#pipy.upload(packpath)