Skip to content

Commit

Permalink
Merge pull request #4 from cleardataeng/add_extractors_to_package
Browse files Browse the repository at this point in the history
Use find_packages instead of maintaining a static list
  • Loading branch information
rvandegrift authored Aug 4, 2021
2 parents 9f474a1 + a9e636f commit 7a23fd1
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
# limitations under the License.


from __future__ import print_function

from setuptools import setup
from setuptools import setup, find_packages

setup(
name="rpe-lib",
Expand All @@ -38,11 +36,7 @@
'tenacity',
'python-dateutil'
],
packages=[
'rpe',
'rpe.engines',
'rpe.resources',
],
packages=find_packages(include=['rpe.*']),
package_data={},
license="Apache 2.0",
keywords="gcp policy enforcement",
Expand Down

0 comments on commit 7a23fd1

Please sign in to comment.