Skip to content

Commit 89475d9

Browse files
author
Alessio Treglia
committed
Install all sub-packages recursively - fixes pandas-dev#7
1 parent bd61919 commit 89475d9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
import os
2020
from setuptools import setup, Extension
21+
from setuptools import find_packages
2122
from setuptools.command.test import test as TestCommand
2223

2324

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

0 commit comments

Comments
 (0)