Skip to content

Commit

Permalink
fix include files recursive
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanbat1 committed May 25, 2021
1 parent f1b4bbc commit e6dd2b5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
@@ -1,6 +1,6 @@
import os
import sys
from setuptools import setup, find_packages
from glob import glob
from setuptools import setup


setup(
name="standards",
Expand All @@ -9,7 +9,7 @@
python_requires=">=2.7",
package_dir={'standards': '.'},
package_data={
'standards': ['*/*'],
'standards': glob("*/**/*.json", recursive=True)
},
packages=["standards"],
include_package_data=True,
Expand Down

0 comments on commit e6dd2b5

Please sign in to comment.