From 1f79f1151a5fc2fdc7312d576d7be39f9fe4562b Mon Sep 17 00:00:00 2001 From: Federico Castagnini Date: Sat, 30 Dec 2017 22:03:14 -0500 Subject: [PATCH] Moving test out of __init__ --- ballpark/__init__.py | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ballpark/__init__.py b/ballpark/__init__.py index 5b0b07a..5a57f49 100644 --- a/ballpark/__init__.py +++ b/ballpark/__init__.py @@ -1,4 +1,4 @@ -from . import notation, shortcuts, statistics, tests +from . import notation, shortcuts, statistics from .notation import order, extent from .notation import scientific, engineering, business from .utils import quantize, floor, ceil, round diff --git a/setup.py b/setup.py index 211275a..33dfb0f 100644 --- a/setup.py +++ b/setup.py @@ -13,6 +13,7 @@ keywords='human numbers format notation scientific engineering', install_requires=[], test_suite='ballpark.tests', + tests_require=['pandas'], classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers',