Skip to content

Commit

Permalink
Merge pull request pandas-dev#10 from alessio/pr-use-find-packages
Browse files Browse the repository at this point in the history
Install all sub-packages recursively - fixes pandas-dev#7
  • Loading branch information
jamesblackburn committed Jul 14, 2015
2 parents b8668bb + 89475d9 commit 21c172e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import os
from setuptools import setup, Extension
from setuptools import find_packages
from setuptools.command.test import test as TestCommand


Expand Down Expand Up @@ -73,7 +74,7 @@ def run_tests(self):
license="GPL",
keywords=["ahl", "keyvalue", "tickstore", "mongo", "timeseries", ],
url="https://github.com/ahlmss/arctic",
packages=['arctic', 'tests'],
packages=find_packages(),
long_description="", # read('README'),
cmdclass={'test': PyTest},
ext_modules=[compress],
Expand Down

0 comments on commit 21c172e

Please sign in to comment.