|
2 | 2 | requires = ["setuptools==75.4.0", "setuptools-scm==8.1.0", "wheel==0.45.0", "auditwheel==6.1.0"] |
3 | 3 | build-backend = "setuptools.build_meta" |
4 | 4 |
|
| 5 | +[project] |
| 6 | +name = "playwright" |
| 7 | +description = "A high-level API to automate web browsers" |
| 8 | +authors = [ |
| 9 | + {name = "Microsoft Corporation"} |
| 10 | +] |
| 11 | +readme = "README.md" |
| 12 | +license = {text = "Apache-2.0"} |
| 13 | +dynamic = ["version"] |
| 14 | +requires-python = ">=3.9" |
| 15 | +dependencies = [ |
| 16 | + "greenlet==3.1.1", |
| 17 | + "pyee==12.0.0", |
| 18 | +] |
| 19 | +classifiers = [ |
| 20 | + "Topic :: Software Development :: Testing", |
| 21 | + "Topic :: Internet :: WWW/HTTP :: Browsers", |
| 22 | + "Intended Audience :: Developers", |
| 23 | + "Programming Language :: Python :: 3", |
| 24 | + "Programming Language :: Python :: 3.9", |
| 25 | + "Programming Language :: Python :: 3.10", |
| 26 | + "Programming Language :: Python :: 3.11", |
| 27 | + "Programming Language :: Python :: 3.12", |
| 28 | + "Programming Language :: Python :: 3.13", |
| 29 | + "License :: OSI Approved :: Apache Software License", |
| 30 | + "Operating System :: OS Independent", |
| 31 | +] |
| 32 | + |
| 33 | +[project.urls] |
| 34 | +homepage = "https://github.com/Microsoft/playwright-python" |
| 35 | +"Release notes" = "https://github.com/microsoft/playwright-python/releases" |
| 36 | + |
| 37 | +[project.scripts] |
| 38 | +playwright = "playwright.__main__:main" |
| 39 | + |
| 40 | +[project.entry-points.pyinstaller40] |
| 41 | +hook-dirs = "playwright._impl.__pyinstaller:get_hook_dirs" |
| 42 | + |
| 43 | +[tool.setuptools] |
| 44 | +packages = [ |
| 45 | + "playwright", |
| 46 | + "playwright.async_api", |
| 47 | + "playwright.sync_api", |
| 48 | + "playwright._impl", |
| 49 | + "playwright._impl.__pyinstaller", |
| 50 | +] |
| 51 | +include-package-data = true |
| 52 | + |
5 | 53 | [tool.setuptools_scm] |
6 | 54 | version_file = "playwright/_repo_version.py" |
7 | 55 |
|
|
0 commit comments