-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
43 lines (36 loc) · 898 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
39
40
41
42
43
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool]
[tool.black]
line-length = 99
[tool.commitizen]
name = "cz_conventional_commits"
version = "1.1.5"
tag_format = "$version"
version_files = [
"we_get/core/we_get.py",
"pyproject.toml"
]
[tool.poetry]
name = "we-get"
version = "1.1.5"
description = "Search torrents from the command-line"
license = "MIT"
keywords = ["command", "line", "torrent"]
homepage = "https://github.com/rachmadaniHaryono/we-get"
authors = ["Levi Sabah <0xl3vi@gmail.com>"]
include = ["we_get/txt/useragents.txt"]
[tool.poetry.dependencies]
python = ">=3.6.2"
beautifulsoup4 = "^4.10.0"
colorama = "^0.4.4"
docopt = "^0.6.2"
prompt-toolkit = ">=3.0.5"
pygments = ">=2.6.1"
requests = ">=2.27.1"
[tool.poetry.dev-dependencies]
pytest-flake8 = "^1.0.7"
vcrpy = "^4.1.1"
[tool.poetry.scripts]
we-get = 'we_get:main'