24 lines
459 B
TOML
24 lines
459 B
TOML
[tool.poetry]
|
|
name = "pcloud_download"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Gabriel Augendre <gabriel@augendre.info>"]
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
requests = "^2.25.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^6.1.2"
|
|
pre-commit = "^2.8.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
target-version = ['py36']
|
|
|
|
[tool.isort]
|
|
profile = "black"
|