Skip to content

Instantly share code, notes, and snippets.

@kynan
Created August 2, 2012 12:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kynan/ae38982d5a53de5eaf8b to your computer and use it in GitHub Desktop.
Save kynan/ae38982d5a53de5eaf8b to your computer and use it in GitHub Desktop.
Dummy package to show tox error
#!/usr/bin/env python
from distutils.core import setup
from sys import version
if version < '2.2.3':
from distutils.dist import DistributionMetadata
DistributionMetadata.classifiers = None
DistributionMetadata.download_url = None
setup(name = 'foo',
version = '0.0.1',
description = 'Dummy package to show tox error',
author = 'Florian Rathgeber',
author_email = 'florian.rathgeber@gmail.com',
packages = ['.'],
package_dir = {'.': ''},
#scripts = ['path/to/script']
)
[tox]
envlist = py27
[testenv]
deps=
numpy>=1.6.0
commands=
pip install h5py>=2.0.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment