Skip to content

Instantly share code, notes, and snippets.

@shlomoa
Created April 13, 2015 08:10
Show Gist options
  • Save shlomoa/867572babd26f12732d1 to your computer and use it in GitHub Desktop.
Save shlomoa/867572babd26f12732d1 to your computer and use it in GitHub Desktop.
testpkg setup.py fails on scipy dependency
from setuptools import setup, find_packages
setup(
name='testpkg',
version='0.1',
packages = find_packages(),
include_package_data=True,
package_data={'': ['*.md']},
url='',
license='',
author='shlomoa',
author_email='[email protected]',
install_requires=['pytz', 'numpy==1.9.1', 'scipy>=0.14.0', 'pandas==0.15.2'],
description=''
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment