-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (33 loc) · 1.11 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "odoo-pretty-module-load"
readme = "README.rst"
description = "Pretty Module Loader - Odoo Addon"
authors = [{name="Anders Innovations", email="[email protected]"}]
license = {text="LGPLv3+"}
requires-python = ">=3.10"
dependencies = [
"click-odoo-contrib",
]
dynamic = ["version"]
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"Framework :: Odoo",
"Environment :: Console",
"Environment :: Plugins",
"Typing :: Typed",
]
[project.urls]
homepage = "https://anders.fi"
source = "https://github.com/andersinno/odoo-pretty-module-load"
issues = "https://github.com/andersinno/odoo-pretty-module-load/issues"
changelog = "https://github.com/andersinno/odoo-pretty-module-load/blob/main/ChangeLog.md"
[tool.hatch.build.targets.wheel]
packages = ["src/odoo"]
[tool.hatch.version]
path = "src/odoo/addons/pretty_module_load/__manifest__.py"
pattern = "[\"]version[\"]: [\"](?P<version>[^\"]+)\""