snapshot of 0.1.10

This commit is contained in:
Kurt Grandis 2015-06-24 00:52:28 -04:00 committed by Kurt Grandis
parent f7d14f3436
commit b07163b57e
2 changed files with 9 additions and 1 deletions

View File

@ -1 +1,4 @@
include README.rst
include tests.py
include tox.ini
recursive-include test_dirs *txt *py

View File

@ -1,10 +1,15 @@
# Multiprocessing handling to avoid atexit test runner failure
try:
import multiprocessing
except ImportError:
pass
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read().strip()
VERSION = '0.1.9'
VERSION = '0.1.10'
setup(
name = "nose-exclude",