-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
35 lines (30 loc) · 879 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 = "osu-beatmap-downloader"
version = "0.1.7"
description = "Downloads x most favorized beatmapsets into the current directory"
authors = ["Vincent Mathis <[email protected]>"]
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/vincentmathis/osu-beatmap-downloader"
keywords = ["osu!",
"osu",
"beatmaps",
"downloader"]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.23.0"
loguru = "^0.4.1"
inquirerpy = "^0.3.3"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
bandit = "^1.6.2"
flake8 = "^3.7.9"
pylint = "^2.4.4"
rope = "^0.16.0"
[tool.poetry.scripts]
osu-beatmap-downloader = "osu_beatmap_downloader:main"
[tool.poetry.urls]
issues = "https://github.com/vincentmathis/osu-beatmap-downloader/issues"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"