Created
April 13, 2015 08:10
-
-
Save shlomoa/867572babd26f12732d1 to your computer and use it in GitHub Desktop.
testpkg setup.py fails on scipy dependency
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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