From 5275cf6ae64ce1aa7f440f212da34eb827bc53dc Mon Sep 17 00:00:00 2001 From: arkilic Date: Tue, 7 Jun 2016 12:13:43 -0400 Subject: [PATCH 1/2] MNT:Update to setup.py. find_packages() does not do the job here --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4b26d2c..aaadf24 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,8 @@ def read(fname): cmdclass=versioneer.get_cmdclass(), license="BSD 3-Clause", url="https://github.com/NSLS-II/amostra.git", - packages=setuptools.find_packages(), + packages=['amostra', 'amostra.client', 'amostra.schemas', + 'amostra.server'] classifiers=[ "License :: OSI Approved :: BSD License", "Development Status :: 3 - Alpha", From 7c022f2e790c9672ad430383d1ce5de53b5892dc Mon Sep 17 00:00:00 2001 From: arkilic Date: Tue, 7 Jun 2016 12:24:38 -0400 Subject: [PATCH 2/2] ENH:Use the setuptools.find_packages() but add folders --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index aaadf24..2b8d207 100644 --- a/setup.py +++ b/setup.py @@ -13,8 +13,8 @@ def read(fname): cmdclass=versioneer.get_cmdclass(), license="BSD 3-Clause", url="https://github.com/NSLS-II/amostra.git", - packages=['amostra', 'amostra.client', 'amostra.schemas', - 'amostra.server'] + packages=setuptools.find_packages(), + install_package_data = True, classifiers=[ "License :: OSI Approved :: BSD License", "Development Status :: 3 - Alpha",