-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (39 loc) · 1.32 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
[tool.poetry]
name = "iscc-ieps"
version = "0.1.0"
description = "IEPs - ISCC Enhancement Proposals"
authors = ["Titusz Pan <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://ieps.iscc.codes"
repository = "https://github.com/iscc/iscc-ieps"
keywords=["iscc", "identifier", "media", "content", "hash", "blockchain", "similarity"]
packages = [
{ include = "ieps" },
]
[tool.poetry.dependencies]
python = ">=3.9,<=3.13"
black = "*"
mkdocs-material = "*"
poethepoet = "*"
mdformat-gfm = "*"
mdformat-tables = "*"
mdformat-config = "*"
mdformat-black = "*"
mdformat-web = "*"
mdformat-toc = "*"
mdformat_footnote = "*"
mdformat_frontmatter = "*"
mdformat_deflist = "*"
mkdocs-git-revision-date-localized-plugin = "*"
mkdocs-add-number-plugin = "*"
mkdocs-glightbox = "*"
[tool.poe.tasks]
format-code = { cmd = "poetry run black .", help = "Code style formating with black" }
format-md = { cmd = "mdformat --wrap 100 --end-of-line lf .", help = "Markdown formating with mdformat" }
build-ieps = { script = "tools.build_ieps:main", help = "Copy README.md to /ieps" }
normalize-line-endings = { cmd = "poetry run python -m tools.lf", help = "Convert line endings to lf" }
all = ["format-code", "build-ieps", "normalize-line-endings"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"