-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 791 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[tool.poetry]
name = "pyctor"
version = "0.1.0"
description = "Trio Typed Behaviors for reactive stateful applications"
authors = ["Nils Plaschke <Chumper@users.noreply.github.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.11"
trio = "^0.22.0"
exceptiongroup = "^1.0.0-rc.9"
msgspec = "^0.9.1"
pytypes = "^1.0b10"
cloudpickle = "^2.2.0"
tricycle = "^0.2.1"
pytest-trio = "^0.8.0"
typeguard = "^3.0.2"
pydantic = "^1.10.7"
[tool.poetry.dev-dependencies]
black = {version = "^22.10.0", allow-prereleases = true}
mypy = "^0.982"
trio-typing = "^0.7.0"
coverage = "^6.5.0"
isort = "^5.10.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
coverage = "^6.5.0"
isort = "^5.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"