-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (49 loc) · 1.4 KB
/
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
48
49
50
51
52
53
[tool.poetry]
authors = ["Ian Chen <[email protected]>"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Trio",
"Topic :: Scientific/Engineering :: Visualization",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
]
description = "Structured Concurrency visualizer for trio"
homepage = "https://github.com/ianchen-tw/trio-vis"
license = "MIT"
name = "trio-vis"
readme = "README.md"
repository = "https://github.com/ianchen-tw/trio-vis"
version = "0.1.0"
[tool.pytest.ini_options]
addopts = "--cov=trio_vis"
markers = [
"dev: marks tests as developing (deselect with '-m \"not dev\"')",
]
[tool.poetry.dependencies]
attrs = "^21.2.0"
pydantic = "^1.8.2"
python = ">=3.6.2, <4.0"
rich = "^9.13.0"
trio = "^0.19.0"
trio-typing = "^0.5.0"
typing-extensions = "^3"
[tool.poetry.dev-dependencies]
autoflake = "^1.4"
black = "^21.10b0"
ipdb = "^0.13.7"
isort = "^5.7.0"
mypy = "^0.812"
pytest = "^6.2.4"
pytest-cov = "^2.12.1"
pytest-mock = "^3.6.1"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]