-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: migrate build setup from setuptools to build (#254)
- Loading branch information
Showing
6 changed files
with
46 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
[build-system] | ||
requires = ["setuptools==75.4.0", "setuptools_scm==8.1.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "pytest-playwright" | ||
description = "A pytest wrapper with fixtures for Playwright to automate web browsers" | ||
readme = "README.md" | ||
authors = [ | ||
{name = "Microsoft"} | ||
] | ||
license = {file = "LICENSE"} | ||
requires-python = ">=3.9" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Framework :: Pytest", | ||
] | ||
dynamic = ["version"] | ||
dependencies = [ | ||
"playwright>=1.18", | ||
"pytest>=6.2.4,<9.0.0", | ||
"pytest-base-url>=1.0.0,<3.0.0", | ||
"python-slugify>=6.0.0,<9.0.0", | ||
] | ||
|
||
[project.urls] | ||
homepage = "https://github.com/microsoft/playwright-pytest" | ||
|
||
[project.entry-points.pytest11] | ||
playwright = "pytest_playwright.pytest_playwright" | ||
|
||
[tool.setuptools] | ||
packages = ["pytest_playwright"] | ||
[tool.setuptools_scm] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,8 +91,6 @@ | |
|
||
USE_I18N = True | ||
|
||
USE_L10N = True | ||
|
||
USE_TZ = True | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters