forked from charbonnierg/kapla-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (55 loc) · 1.37 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "kapla-cli-v2"
authors = [
{ name = "Guillaume Charbonnier", email = "[email protected]" },
]
description = "Python monorepo package manager"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["nats", "nats-server"]
license = { text = "Apache-2.0" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dynamic = ["version"]
dependencies = [
"graphlib-backport ; python_version < '3.9'",
"pydantic<2",
"anyio",
"ruamel.yaml",
"tomlkit",
"rich",
"structlog",
"chardet",
"Jinja2",
]
[project.optional-dependencies]
tests = ["pytest", "pytest-cov"]
dev = [
"black",
"isort",
"flake8",
"mypy",
"types-toml",
"types-setuptools",
"types-chardet",
]
[project.urls]
Repository = "https://github.com/charbonnierg/kapla-cli-v2"
Issues = "https://github.com/charbonnierg/kapla-cli-v2/issues"
[project.scripts]
k = "kapla.cli:app"
[tool.setuptools.dynamic]
version = { attr = "kapla.__version__" }
[tool.pyright]
pythonVersion = "3.9"
include = ["tests", "src"]
exclude = ["**/.venv", "**/node_modules", "**/__pycache__", ".git", "**/build"]
venv = ".venv"
venvPath = "."
typeCheckingMode = "basic"
reportUnnecessaryTypeIgnoreComment = "warning"