File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 20
20
import zipfile
21
21
from pathlib import Path
22
22
23
- import setuptools
23
+ from setuptools import find_packages , setup
24
24
25
25
try :
26
26
from auditwheel .wheeltools import InWheel
@@ -130,15 +130,15 @@ def run(self) -> None:
130
130
print ("auditwheel not installed, not updating RECORD file" )
131
131
132
132
133
- setuptools . setup (
133
+ setup (
134
134
name = "playwright" ,
135
135
author = "Microsoft Corporation" ,
136
136
author_email = "" ,
137
137
description = "A high-level API to automate web browsers" ,
138
138
long_description = Path ("README.md" ).read_text (encoding = "utf-8" ),
139
139
long_description_content_type = "text/markdown" ,
140
140
url = "https://github.com/Microsoft/playwright-python" ,
141
- packages = [ "playwright" ] ,
141
+ packages = find_packages ( exclude = [ "tests*" ]) ,
142
142
include_package_data = True ,
143
143
install_requires = [
144
144
"websockets>=8.1" ,
You can’t perform that action at this time.
0 commit comments