-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 875 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
[tool.poetry]
name = "clutchless"
version = "0.2.1"
description = "A CLI tool to manage torrents and their data in Transmission"
authors = ["mhadam <michael@hadam.us>"]
repository = "https://github.com/mhadam/clutchless"
documentation = "https://github.com/mhadam/clutchless"
readme = "README.rst"
license = "MIT"
packages = [{ include = "clutchless" }]
[tool.poetry.scripts]
clutchless = 'clutchless.entrypoints.cli:main'
[tool.poetry.dependencies]
python = "^3.7"
colorama = "^0.4.4"
transmission-clutch = "^6.0.0"
torrentool = "^1.1.0"
texttable = "^1.6.3"
docopt = "^0.6.2"
pathvalidate = "^2.4.1"
[tool.poetry.dev-dependencies]
coverage = "^5.2.1"
coveralls = "^2.1.2"
pytest = "^6.1.2"
pytest-mock = "^3.3.1"
pytest-asyncio = "^0.14.0"
pytest-datadir = "^1.3.1"
pytest-cov = "^2.11.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"