Skip to content

Commit

Permalink
Use find_packages() to determine packages to install
Browse files Browse the repository at this point in the history
  • Loading branch information
rgerkin committed Mar 26, 2018
1 parent ec0f0cb commit 515e979
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@
from pip.req import parse_requirements
from pip.download import PipSession

try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from setuptools import setup, find_packages

# IPython 6.0+ does not support Python 2.6, 2.7, 3.0, 3.1, or 3.2
if sys.version_info < (3,3):
Expand All @@ -29,9 +26,7 @@ def read_requirements():
version='0.19',
author='Rick Gerkin',
author_email='rgerkin@asu.edu',
packages=['sciunit',
'sciunit.scores',
'sciunit.unit_test'],
packages=find_packages(),
url='http://sciunit.scidash.org',
license='MIT',
description='A test-driven framework for formally validating scientific models against data.',
Expand Down

0 comments on commit 515e979

Please sign in to comment.