-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
40 lines (36 loc) · 1.15 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "odoo-configurator"
version = "3.4.8"
description = "Configure and update Odoo database with YAML files"
readme = "README.md"
authors = [{ name = "Michel Perrocheau", email = "myrrkel@gmail.com" },
{ name = "David Halgand", email = "david@scalizer.fr" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Framework :: Odoo",
]
keywords = ["odoo", "configurator", "xmlrpc", "yaml"]
dependencies = [
"HiYaPyCo",
"pykeepass",
"unidecode",
"urllib3",
"bs4",
"pyvat",
"cryptocode",
"s6r_bitwarden_cli",
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = ["twine", "bumpver", "pip-tools", "pytest", "check-manifest"]
[project.urls]
Homepage = "https://github.com/ScalizerOrg/odoo-configurator"
Changelog = "https://github.com/ScalizerOrg/odoo-configurator/blob/main/CHANGELOG.md"
[project.scripts]
odoo-configurator = "odoo_configurator.__main__:main"