-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (44 loc) · 1.31 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
[tool.poetry]
name = "ai4-api-keys"
version = "0.1.0"
description = "AI4 API Key generator"
authors = ["Alvaro Lopez Garcia <aloga@ifca.unican.es>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ai4os/ai4-api-keys"
repository = "https://github.com/ai4os/ai4-api-keys"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ai4os/ai4-api-keys/issues"
[tool.poetry.scripts]
ai4-api-keys = "ai4_api_keys.cli:app"
[tool.poetry.dependencies]
python = "^3.10"
cryptography = "^43.0.1"
typer = "^0.12.5"
[tool.poetry.group.dev.dependencies]
tox = "^4.21.2"
[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"
[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"