-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #138 from Colin-b/use_pyproject
Bump httpx
- Loading branch information
Showing
6 changed files
with
83 additions
and
68 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
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,66 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools_scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "pytest-httpx" | ||
description = "Send responses to httpx." | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
license = {file = "LICENSE"} | ||
authors = [ | ||
{ name = "Colin Bounouar", email = "colin.bounouar.dev@gmail.com" }, | ||
] | ||
maintainers = [ | ||
{ name = "Colin Bounouar", email = "colin.bounouar.dev@gmail.com" }, | ||
] | ||
keywords = [ | ||
"httpx", | ||
"mock", | ||
"pytest", | ||
"testing", | ||
] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Framework :: Pytest", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Internet :: WWW/HTTP", | ||
"Topic :: Software Development :: Build Tools", | ||
"Typing :: Typed", | ||
] | ||
dependencies = [ | ||
"httpx==0.27.*", | ||
"pytest>=7,<9", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
documentation = "https://colin-b.github.io/pytest_httpx/" | ||
repository = "https://github.com/Colin-b/pytest_httpx" | ||
changelog = "https://github.com/Colin-b/pytest_httpx/blob/master/CHANGELOG.md" | ||
issues = "https://github.com/Colin-b/pytest_httpx/issues" | ||
|
||
[project.optional-dependencies] | ||
testing = [ | ||
# Used to check coverage | ||
"pytest-cov==4.*", | ||
# Used to run async tests | ||
"pytest-asyncio==0.23.*", | ||
] | ||
|
||
[project.entry-points.pytest11] | ||
pytest_httpx = "pytest_httpx" | ||
|
||
[tool.setuptools.packages.find] | ||
exclude = ["tests*"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "pytest_httpx.version.__version__"} |
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