-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (32 loc) · 971 Bytes
/
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
[tool.poetry]
name = "pypi-token-client"
version = "1.0.9"
description = "Library and CLI tool for creating PyPI project tokens"
authors = ["smheidrich <[email protected]>"]
readme = "README.md"
homepage = "https://smheidrich.gitlab.io/pypi-token-client/"
repository = "https://gitlab.com/smheidrich/pypi-token-client"
documentation = "https://smheidrich.gitlab.io/pypi-token-client/"
[tool.poetry.scripts]
pypi-token-client = 'pypi_token_client.cli:cli_main'
[tool.poetry.dependencies]
python = "^3.10"
playwright = "^1.29"
keyring = "^23.13.1"
typer = "^0.7.0"
python-dateutil = "^2.8.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
mypy = "^0.991"
flake8 = "^6.0.0"
black = "^22.10.0"
isort = "^5.10.1"
types-python-dateutil = "^2.8.19.5"
[tool.poetry.group.doc.dependencies]
sphinx = "^6.1.3"
sphinx-autoapi = "^2.0.0"
[tool.black]
line-length = 79
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"