-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.07 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
[tool.poetry]
name = "pypitoken"
version = "0.0.0"
description = "Manipulate PyPI API tokens"
license = "MIT"
authors = ["Joachim Jablon <[email protected]>"]
classifiers = [
"Topic :: Security",
"Topic :: System :: Archiving :: Packaging"
]
readme = "README.rst"
homepage = "https://pypitoken.readthedocs.io/en/latest/"
repository = "https://github.com/ewjoachim/pypitoken"
documentation = "https://pypitoken.readthedocs.io/en/latest/"
keywords = ["pypi", "api", "token", "security", "packaging"]
[tool.poetry.dependencies]
python = "^3.8"
pymacaroons = "^0.13.0"
jsonschema = "*"
typing-extensions = "*"
[tool.poetry.group.releasec.dependencies]
dunamai = "*"
[tool.poetry.group.docs.dependencies]
Sphinx = ">=5"
furo = "*"
sphinx-autodoc-typehints = "*"
sphinx-github-changelog = "*"
[tool.poetry.group.tests.dependencies]
pytest = "*"
pytest-cov = "*"
pytest-mock = "*"
[tool.poetry.group.lint.dependencies]
black = "*"
isort = { version = "*", python = ">=3.8" }
flake8 = "*"
mypy = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"