forked from dom-verity/entangled.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.31 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (41 loc) · 1.31 KB
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 = "entangled-cli"
version = "2.0.2"
description = "Literate Programming toolbox"
repository = "https://github.com/entangled/entangled.py"
homepage = "https://entangled.github.io/"
authors = ["Johan Hidding <j.hidding@esciencecenter.nl>"]
license = "Apache 2"
readme = "README.md"
packages = [{ include = "entangled" }]
[tool.poetry.dependencies]
python = "^3.11"
mawk = "^0.1.4" # use mawk as line parsing engine
watchdog = "^3.0.0" # file watching
filelock = "^3.12.0" # file lock for json db
argh = "^0.30" # easy argument parsing
rich = "^13.3.5" # colourful output
tomlkit = "^0.12.1" # read/write toml files
copier = "^8.3.0" # project templates
brei = "^0.2.3" # build system
rich-argparse = "^1.4.0" # colourful help messages
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
mypy = "^1.3.0"
black = "^23.3.0"
pytest-cov = "^4.0.0"
mkdocs = "^1.4.3"
mkdocs-material = "^9.1.13"
mkdocstrings = { extras = ["python"], version = "^0.21.2" }
twine = "^4.0.2"
pytest-asyncio = "^0.21.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["test"]
[tool.mypy]
packages = ["entangled"]
enable_incomplete_feature = ["TypeVarTuple"]
[tool.poetry.scripts]
entangled = "entangled.main:cli"