-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 770 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 770 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "odoo_console"
version = "2.0.0"
description = "Odoo IPython Console - PyCharm Edition"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{ name = "AlexTkDev", email = "alex@example.com" }
]
dependencies = [
"odoo>=16.0",
"ipython>=8.10.0",
"rich>=13.0.0",
"nest_asyncio>=1.5.6",
"jedi>=0.18.0",
"tabulate>=0.9.0", # Kept for backward compatibility if needed, but we use Rich now
]
[project.scripts]
odoo-console = "odoo_console.core:main"
[project.optional-dependencies]
test = [
"pytest",
]
dev = [
"ipdb>=0.13.0",
"memory-profiler>=0.61.0",
"psutil>=5.9.0",
"aiohttp>=3.8.0",
"ipywidgets>=8.0.0",
]