-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
35 lines (29 loc) · 950 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.skjold]
sources = ["pyup"] # Sources to check against.
report-only = true # Report only, always exit with zero.
report-format = 'json' # Output findings as `json`. Default is 'cli'.
cache_dir = '.skylt_cache' # Cache location (default: `~/.skjold/cache`).
cache_expires = 86400 # Cache max. age.
verbose = true # Be verbose.
[tool.poetry]
name = "ferme-ta-gueule"
version = "2.0.0"
description = ""
authors = ["Grégory Duchatelet <greg@easyflirt.com>"]
packages = [
{ include = "ferme-ta-gueule.py" }
]
[tool.poetry.scripts]
ftg = "ferme-ta-gueule:main"
[tool.poetry.dependencies]
python = "^3.7.3"
termcolor = "^1"
elasticsearch = "^7"
requests = "^2"
setuptools = "^65"
[tool.poetry.dev-dependencies]
pre-commit = "*"
black = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"