Skip to content

Commit d43b2c0

Browse files
U-NORTHAMERICA\taherouxU-NORTHAMERICA\taheroux
authored andcommitted
added setup.py
1 parent 36402c1 commit d43b2c0

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,6 @@ nosetests.xml
3636
.mr.developer.cfg
3737
.project
3838
.pydevproject
39+
40+
# Virtualenv
41+
venv/

setup.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)