forked from TeclibERP/odoo-configurator
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.28 KB
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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "odoo-configurator"
version = "3.7.3"
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 = [
"beautifulsoup4",
"HiYaPyCo",
"pykeepass",
"cryptocode",
"s6r_bitwarden_cli",
"s6r-odoo",
"psycopg",
"pymssql",
"requests",
"unidecode",
"pyodbc",
"mysql-connector-python",
"slack_sdk",
"toml",
"packaging",
]
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"