-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
50 lines (45 loc) · 1021 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
44
45
46
47
48
49
50
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.7.6"
tag_format = "v$version"
version_files = [
"pyproject.toml:version",
]
[tool.poetry]
name = "party"
version = "0.7.6"
description = ""
authors = ["darkdragn <[email protected]>"]
packages = [
{ include = "party" },
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.27.1"
tqdm = "^4.62.3"
python-dateutil = "^2.8.2"
typer = "^0.9.0"
loguru = "^0.5.3"
marshmallow = "^3.14.1"
aiohttp = "^3.8.1"
aiofiles = "^0.8.0"
prettytable = "^3.0.0"
simplejson = "^3.17.6"
yaspin = "^3.0.0"
desert = "^2020.11.18"
urllib3 = "<=2.0.0"
python-slugify = "^8.0.1"
merge-args = "^0.1.5"
marshmallow-jsonschema = "^0.13.0"
[tool.poetry.dev-dependencies]
pylint = "^2.12.2"
jedi = "^0.18.1"
commitizen = "^2.20.4"
pre-commit = "^2.17.0"
black = {version = "^22.1.0", allow-prereleases = true}
pdoc = "^10.0.1"
[tool.poetry.scripts]
party = 'party.cli:APP'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"