Skip to content

Commit

Permalink
Default setuptools backend.
Browse files Browse the repository at this point in the history
  • Loading branch information
coady committed May 28, 2024
1 parent 6db2fce commit c95bf6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: pip install build wheel setuptools -r docs/requirements.in
- run: python -m build -n
- run: pip install build -r docs/requirements.in
- run: python -m build
- run: PYTHONPATH=$PWD mkdocs gh-deploy --force
- uses: pypa/gh-action-pypi-publish@release/v1
12 changes: 1 addition & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "futured"
dynamic = ["version"]
description = "Functional interface for concurrent futures, including asynchronous I/O."
description = "Functional interface for concurrent futures, including async coroutines."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE.txt"}
Expand Down Expand Up @@ -33,15 +29,9 @@ Documentation = "https://coady.github.io/futured"
Changelog = "https://github.com/coady/futured/blob/main/CHANGELOG.md"
Issues = "https://github.com/coady/futured/issues"

[tool.setuptools]
packages = ["futured"]

[tool.setuptools.dynamic]
version = {attr = "futured.__version__"}

[tool.setuptools.package-data]
futured = ["py.typed"]

[tool.ruff]
line-length = 100
extend-include = ["*.ipynb"]
Expand Down

0 comments on commit c95bf6f

Please sign in to comment.