Skip to content

Commit

Permalink
chore(build): have allow-list in setup.py included packages (#1510)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Aug 18, 2022
1 parent 87ca3f1 commit 2d922d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -22,7 +22,7 @@
from pathlib import Path
from typing import Dict, List

from setuptools import find_packages, setup
from setuptools import setup

try:
from auditwheel.wheeltools import InWheel
Expand Down Expand Up @@ -205,7 +205,7 @@ def _download_and_extract_local_driver(
long_description=Path("README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
url="https://github.com/Microsoft/playwright-python",
packages=find_packages(exclude=["tests*"]),
packages=["playwright"],
include_package_data=True,
install_requires=[
"websockets==10.1",
Expand Down

0 comments on commit 2d922d2

Please sign in to comment.