Merge pull request #73 from IndicoDataSolutions/development

FIX: don't import version number on install
This commit is contained in:
Madison May
2015-06-22 12:29:46 -04:00
3 changed files with 3 additions and 3 deletions
+1
View File
@@ -27,3 +27,4 @@ v0.7.0, Tue Jun 9 -- Added support for calling multiple APIs in a single functio
v0.7.1 Thu Jun 11 -- High quality sentiment API for private beta, fix for multi API support
v0.7.2 Thu Jun 11 -- Remove sentiment_hq from text apis by default
v0.7.3 Wed Jun 17 -- Fixes for handling of specific image types
v0.7.4 Mon Jun 22 -- Fix for setup.py issues
+1 -1
View File
@@ -1,6 +1,6 @@
from functools import partial
Version, version, __version__, VERSION = ('0.7.3',) * 4
Version, version, __version__, VERSION = ('0.7.4',) * 4
JSON_HEADERS = {
'Content-type': 'application/json',
+1 -2
View File
@@ -1,7 +1,6 @@
"""
Setup for indico apis
"""
from indicoio import VERSION
try:
from setuptools import setup
@@ -10,7 +9,7 @@ except ImportError:
setup(
name="IndicoIo",
version=VERSION,
version="0.7.4",
packages=[
"indicoio",
"indicoio.text",