We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36402c1 commit d43b2c0Copy full SHA for d43b2c0
.gitignore
@@ -36,3 +36,6 @@ nosetests.xml
36
.mr.developer.cfg
37
.project
38
.pydevproject
39
+
40
+# Virtualenv
41
+venv/
setup.py
@@ -0,0 +1,11 @@
1
+#!/usr/bin/env python
2
3
+from setuptools import setup
4
5
+setup(name="quadkey",
6
+ version="0.0.1",
7
+ description="Python Implementation for Geospatial Quadkeys",
8
+ author="Buck Heroux",
9
+ url="https://github.com/buckheroux/QuadKey",
10
+ packages=['quadkey']
11
+ )
0 commit comments