diff options
author | Calvin <calvin@EESI> | 2013-03-13 13:18:14 -0400 |
---|---|---|
committer | Calvin <calvin@EESI> | 2013-03-13 13:18:14 -0400 |
commit | c6398e29628d57eca7cd481623decf7ce337b2d6 (patch) | |
tree | eb0870beac65dda95d3cccafb83346c4f45f9e88 /src/python | |
parent | 6b63b947d5a6092e856f47b1422151dbc251346e (diff) |
added setup.py for python quikr module
Diffstat (limited to 'src/python')
-rw-r--r-- | src/python/setup.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/python/setup.py b/src/python/setup.py new file mode 100644 index 0000000..2623400 --- /dev/null +++ b/src/python/setup.py @@ -0,0 +1,5 @@ +from distutils.core import setup +setup(name='quikr', + version='1.0', + py_modules=['quikr'], + ) |