forked from deephdc/schema4deep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
88 lines (66 loc) · 2.13 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
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
80
81
82
83
84
85
86
87
88
[tool.poetry]
name = "ai4-metadata"
version = "2.2.1"
description = "AI4OS Hub applications metadata utilities"
readme = "README.md"
license = "Apache-2"
homepage = "https://github.com/ai4os/ai4-metadata"
repository = "https://github.com/ai4os/ai4-metadata"
authors = [
"Álvaro López García <[email protected]>",
"Pablo Orviz <[email protected]>",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ai4os/ai4-metadata/issues"
[tool.poetry.scripts]
ai4-metadata-validator = "ai4_metadata.cli:validate_main"
ai4-metadata-migrate = "ai4_metadata.cli:migrate_main"
ai4-metadata = "ai4_metadata.cli:app"
[tool.poetry.dependencies]
python = "^3.10"
jsonschema = "^4.23.0"
rfc3987 = "^1.3.8"
typer = "^0.12.4"
pyyaml = "^6.0.2"
[tool.poetry.group.dev.dependencies]
tox = "^4.17.1"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
[tool.poetry.group.test-flake8.dependencies]
flake8 = "^7.1.1"
flake8-bugbear = "^24.4.26"
flake8-docstrings = "^1.7.0"
flake8-typing-imports = "^1.15.0"
flake8-colors = "^0.1.9"
pep8-naming = "^0.14.1"
pydocstyle = "^6.3.0"
[tool.poetry.group.test-black.dependencies]
black = "^24.8.0"
[tool.poetry.group.test-bandit.dependencies]
bandit = "^1.7.9"
[tool.poetry.group.test-mypy.dependencies]
mypy = "^1.11.1"
types-simplejson = "^3.19.0.20240801"
types-jsonschema = "^4.23.0.20240712"
types-pyyaml = "^6.0.12.20240808"
[tool.poetry.group.test-pip-missing-reqs.dependencies]
pip-check-reqs = "^2.5.3"
poetry-plugin-export = "^1.8.0"
[tool.poetry.group.test-pypi.dependencies]
poetry = "^1.8.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"