forked from yashrathi-git/headspace-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 797 Bytes
/
pyproject.toml
File metadata and controls
30 lines (25 loc) · 797 Bytes
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
[tool.poetry]
name = "pyheadspace"
version = "3.1.5"
description = "Command line script to download packs and singles from Headspace."
authors = ["Yash Rathi <yashrathicricket@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/yashrathi-git/pyHeadspace"
documentation = "https://github.com/yashrathi-git/pyHeadspace#pyheadspace"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/yashrathi-git/pyHeadspace/issues"
[tool.poetry.dependencies]
python = ">=3.7,<4.0.0"
click = "^8.0.3"
rich = "^12.2.0"
requests = "^2.26.0"
appdirs = "^1.4.4"
PyJWT = "^2.3.0"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
pytest = "^7.1.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
headspace = 'pyheadspace.__main__:cli'