generated from odpi/egeria-template-newrepo
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (66 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
79 lines (66 loc) · 1.67 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[tool.poetry]
#
# PDX-License-Identifier: Apache-2.0
# Copyright Contributors to the ODPi Egeria project.
name = "myegeria"
version = "0.1"
license = 'Apache 2.0'
authors = ["Peter Coldicott <peter.coldicott@pdr-associates.com>"]
readme = "README.md"
description = "A textual UI for Egeria"
keywords = ["egeria", "metadata", "governance"]
homepage = "https://github.com/odpi/egeria-python"
repository = "https://github.com/odpi/egeria-python"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
packages = [
{ include = "src"},
{ include = "src/con_services"},
{ include = "src/DemoCode"},
{ include = "src/screens"},
{ include = "src/services"},
{ include = "src/widgets"},
{ include = "src/styles"},
{ include = "src/utils"},
]
[tool.poetry.dependencies]
python = ">3.12,<4.0"
httpx = "*"
rich = "*"
validators = "*"
urllib3 = "*"
requests = "*"
pytest = "*"
jupyter = "*"
click = "*"
trogon = "^0.6.0"
textual = "^6.1.0"
mermaid-py = "*"
psycopg2-binary = "^2.9.9"
jupyter-notebook-parser = "^0.1.4"
loguru = "^0.7.3"
poetry-core = "^2.1.3"
inflect = "^7.5.0"
pydantic = "^2.11.7"
pydantic-settings = "^2.10.1"
pydevd-pycharm = "*"
pyegeria = "^5.4.4"
textual-dev = "*"
textual-web = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^8.2.2"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.1.1"
black = "^25.1.0"
isort = "^6.0.0"
[tool.poetry.scripts]
my_egeria = "src.main:main"
data_products = "src.DemoCode:main"