-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
41 lines (35 loc) · 979 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
[tool.poetry]
name = "nyaacli"
version = "0.3.2"
description = "A CLI for downloading Anime from https://nyaa.si"
authors = ["John Victor <johnvfs@protonmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/johnvictorfs/nyaa-cli"
keywords = ["CLI", "anime"]
classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
[tool.poetry.dependencies]
python = ">=3.6.3,<4.0.0"
feedparser = "6.0.2"
guessit = "3.2.0"
click = "7.1.2"
colorama = "0.4.4"
dataclasses = { version = "~0.8", python = "~3.6" }
questionary = "1.10.0"
rich = "~12.2.0"
[tool.poetry.dev-dependencies]
autopep8 = "^1.4"
mypy = "^0.740.0"
flake8 = "^3.7"
[tool.poetry.scripts]
nyaa-cli = 'nyaacli.cli:main'
nyaa = 'nyaacli.cli:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"