-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (39 loc) · 996 Bytes
/
pyproject.toml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
[tool.poetry]
name = "triotp"
version = "0.2.1"
license = "MIT"
description = "The OTP framework for Python Trio"
keywords = ["trio", "async", "otp", "triotp"]
authors = ["David Delassus <[email protected]>"]
homepage = "https://linkdd.github.io/triotp"
repository = "https://github.com/linkdd/triotp"
readme = "README.rst"
include = [
"LICENSE.txt"
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Trio",
"Intended Audience :: Developers",
"Topic :: Software Development"
]
[tool.poetry.dependencies]
python = "^3.10"
trio = "^0.19.0"
tenacity = "^8.2.3"
Logbook = "^1.7.0.post0"
trio-util = "^0.7.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-trio = "^0.7.0"
Sphinx = "^7.2.6"
sphinx-rtd-theme = "^2.0.0"
pytest-cov = "^4.1.0"
black = "^24.1.1"
mypy = "^1.8.0"
coveralls = "^3.3.1"
[tool.poetry.group.docs.dependencies]
toml = "^0.10.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"