-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
75 lines (66 loc) · 1.85 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["hatchling", "hatch-vcs"]
# Disable the `build-backend` since this project is not a package
#build-backend = "hatchling.build"
[project]
name = "aleph-docs"
dynamic = ["version"]
description = "Aleph.im official documentation"
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE.txt"}
keywords = ["aleph", "aleph.im", "documentation", "ipfs", "p2p"]
authors = [
{name = "Hugo Herter", email = "[email protected]"},
{name = "Mike Hukiewitz", email = "[email protected]"},
{name = "Antonyjin", email = "[email protected]"},
{name = "Arnaud S.", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Topic :: System :: Distributed Computing",
]
dependencies = [
"mkdocs-material==9.5.27",
"mkdocs-redirects==1.2.1",
"aioipfs==0.6.6",
"async-timeout==4.0.3"
]
[project.urls]
Homepage = "https://docs.aleph.im/"
Source = "https://github.com/aleph-im/aleph-docs"
Issues = "https://github.com/aleph-im/aleph-docs/issues"
Discussions = "https://community.aleph.im/"
[tool.hatch.version]
source = "vcs"
[tool.hatch.envs.testing]
dependencies = [
"mypy==1.9.0",
"black==24.3.0",
"isort==5.13.2",
"ruff==0.3.4",
"pytest==8.1.1",
"mktestdocs==0.2.1",
"aleph-sdk-python==1.0.0rc1",
]
[tool.hatch.envs.testing.scripts]
lint = "mypy . && black --check . && isort --check . && ruff check ."
typing = "mypy ."
test = "pytest -vv"
build = "hatch run mkdocs build --strict"
[tool.black]
target-version = ["py311"]
line-length = 88
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.11"
install_types = true
non_interactive = true
ignore_missing_imports = true
check_untyped_defs = true
[tool.ruff]
target-version = "py311"
line-length = 88