Skip to content

Commit

Permalink
Ensure that R files in dirs without __init__.py are installed (#832)
Browse files Browse the repository at this point in the history
(cherry picked from commit 57005bf)
  • Loading branch information
ksbeattie committed Oct 14, 2020
1 parent bb1eaf4 commit 1dec8e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
John Eslick, Carnegie Mellon University, 2014
See LICENSE.md for license and copyright details.
"""
from setuptools import setup, find_packages
from setuptools import setup, find_namespace_packages
import sys
import os
import subprocess
Expand Down Expand Up @@ -44,10 +44,10 @@
maintainer = ver.maintainer,
maintainer_email = ver.maintainer_email,
url = ver.webpage,
packages = find_packages(),
packages = find_namespace_packages(),
package_data={
'':['*.template', '*.json', '*.dll', '*.so', '*.svg', '*.png',
'*.html', '*.gms', '*.gpr', '*.ccs', '*.ico']},
'*.html', '*.gms', '*.gpr', '*.ccs', '*.ico', '*.R']},
include_package_data=True,
scripts = [
'cloud/aws/foqus_worker.py',
Expand Down

0 comments on commit 1dec8e4

Please sign in to comment.