forked from acsone/manifestoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
91 lines (78 loc) · 1.94 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "manifestoo"
description = "A tool to reason about Odoo addons manifests"
authors = [
{name = "Stéphane Bidoul", email = "stephane.bidoul@acsone.eu"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Odoo",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
readme = "README.md"
dependencies = [
"manifestoo_core >= 0.8",
"textual >= 0.6",
"typer[all] >= 0.3.2",
"importlib_metadata ; python_version<'3.8'",
]
requires-python = ">=3.7"
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"textual[dev]",
]
test = [
"pytest",
"coverage[toml]",
]
doc = [
"sphinx",
"furo",
"myst-parser",
"towncrier",
"sphinxcontrib-towncrier",
]
[project.urls]
Homepage = "https://github.com/acsone/manifestoo"
Documentation = "https://manifestoo.readthedocs.io/en/stable/"
Changelog = "https://manifestoo.readthedocs.io/en/stable/changelog.html"
Source = "https://github.com/acsone/manifestoo"
[project.scripts]
manifestoo = "manifestoo.main:app"
moo = "manifestoo.main:app"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build]
exclude = [
"/.github",
]
[tool.isort]
profile = "black"
multi_line_output = 3
known_first_party = "manifestoo_core"
[tool.coverage.run]
branch = true
source_pkgs = ["manifestoo"]
[tool.coverage.paths]
source = ["src", ".tox/*/site-packages"]
[tool.coverage.report]
show_missing = true
exclude_lines = [
"pragma: no cover",
]
[tool.towncrier]
package = "manifestoo"
package_dir = "src"
filename = "HISTORY.rst"
directory = "news"
issue_format = "`#{issue} <https://github.com/acsone/manifestoo/issues/{issue}>`_"
title_format = "{version} ({project_date})"