-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (30 loc) · 1.09 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
[project]
name = "odoo_filter_addons"
description = "Simple utlity to filter odoo addons into a single directory"
readme = "README.md"
authors = [
{ name="Pablo Esteban", email="[email protected]" },
]
urls.Homepage = "https://github.com/ForgeFlow/odoo-filter-addons"
urls.Bugtracker = "https://github.com/ForgeFlow/odoo-filter-addons/issues"
classifiers = [
"Intended Audience :: Developers",
"Topic :: Utilities",
"Operating System :: POSIX",
"Framework :: Odoo",
"Programming Language :: Python :: 3"
]
requires-python = ">=3"
# Ensure git-aggregator>=3.0.0 to prevent branch divergence issues with recent git versions
# https://github.com/acsone/git-aggregator/pull/64
dependencies= ["pyyaml", "click", "python-dotenv", "plumbum", "git-aggregator>=3.0.0"]
dynamic = ["version"]
[project.scripts]
odoo_filter_addons = "odoo_filter_addons.main:cli_main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["odoo_filter_addons"]
[tool.setuptools.dynamic]
version = {attr = "odoo_filter_addons.version.__version__"}