diff --git a/keepaAPI/__init__.py b/keepaAPI/__init__.py index 1aaec8f..34adf31 100644 --- a/keepaAPI/__init__.py +++ b/keepaAPI/__init__.py @@ -1,7 +1,4 @@ -__version__ = '0.13.1' - -#from keepaAPI import Interface -#from keepaAPI import Plotting +__version__ = '0.13.2' from keepaAPI.Interface import * from keepaAPI.Plotting import * diff --git a/setup.py b/setup.py index 036abf7..09062e8 100644 --- a/setup.py +++ b/setup.py @@ -7,14 +7,13 @@ """ from setuptools import setup -import numpy setup( name='keepaAPI', packages = ['keepaAPI'], # Version - version='0.13.1', + version='0.13.2', description='Interfaces with keepa.com', long_description=open('README.rst').read(), @@ -25,18 +24,13 @@ license='Apache Software License', classifiers=[ - 'Development Status :: 4 - Beta', - - # Target audience + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: End Users/Desktop', 'Topic :: Database :: Front-Ends', - - # MIT License 'License :: OSI Approved :: Apache Software License', - - # Tested only on Python 2.7 (untested with 3) 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', ], # Website @@ -44,8 +38,6 @@ keywords='keepa', - include_dirs=[numpy.get_include()], - # Might work with earlier versions (untested) install_requires=['numpy>=1.9.3', 'requests>=2.2']