File: pyproject.toml

package info (click to toggle)
python-asyncinject 0.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 128 kB
  • sloc: python: 410; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 666 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[project]
name = "asyncinject"
version = "0.6.1"
description = "Run async workflows using pytest-fixtures-style dependency injection"
readme = "README.md"
requires-python = ">=3.10"
authors = [{name = "Simon Willison"}]
license = "Apache-2.0"
classifiers = []
dependencies = []

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project.urls]
Homepage = "https://github.com/simonw/asyncinject"
Changelog = "https://github.com/simonw/asyncinject/releases"
Issues = "https://github.com/simonw/asyncinject/issues"
CI = "https://github.com/simonw/asyncinject/actions"

[project.optional-dependencies]
test = ["pytest", "pytest-asyncio"]