-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
48 lines (42 loc) · 1.17 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
[project]
name = "oca_port"
authors = [
{name = "Odoo Community Association (OCA)"},
{name = "Sébastien Alix", email="[email protected]"},
{name = "Simone Orsi", email="[email protected]"}
]
description = "OCA tool to help with modules migration"
readme = "README.md"
keywords = ["odoo", "oca", "port", "migration", "modules", "addons"]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3",
"Framework :: Odoo",
]
dependencies = [
"click",
"gitpython",
"requests",
"giturlparse",
]
requires-python = ">=3.8"
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/OCA/oca-port"
documentation = "https://github.com/OCA/oca-port"
repository = "https://github.com/OCA/oca-port"
[project.scripts]
oca-port = "oca_port.cli.main:main"
oca-port-pr = "oca_port.cli.pr:cli"
[project.optional-dependencies]
test = [
"pytest",
"coverage",
]
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = {}
[tool.setuptools_scm]