Skip to content

Commit

Permalink
removed numpy import in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
akaszynski committed May 9, 2017
1 parent 7648825 commit 9377798
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 15 deletions.
5 changes: 1 addition & 4 deletions keepaAPI/__init__.py
Original file line number Diff line number Diff line change
@@ -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 *
14 changes: 3 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand All @@ -25,27 +24,20 @@

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
url = 'https://github.com/akaszynski/keepaAPI',

keywords='keepa',

include_dirs=[numpy.get_include()],

# Might work with earlier versions (untested)
install_requires=['numpy>=1.9.3', 'requests>=2.2']

Expand Down

0 comments on commit 9377798

Please sign in to comment.