-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (35 loc) · 912 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
[tool.poetry]
name = "caesar-cipher"
version = "0.1.1"
description = "Caesar Cipher CLI."
authors = ["Igor Ferreira <iferreira.n01@gmail.com>"]
readme = "README.md"
packages = [{include = "caesar_cipher"}]
[tool.poetry.dependencies]
python = "^3.11"
typer = {extras = ["all"], version = "^0.9.0"}
[tool.poetry.group.dev.dependencies]
coverage = "^7.2.5"
hypothesis = "^6.75.3"
isort = "^5.12.0"
blue = "^0.9.1"
mypy = "^1.3.0"
taskipy = "^1.11.0"
[tool.isort]
profile = "black"
line_length = 79
[tool.mypy]
packages = [
'caesar_cipher'
]
[tool.taskipy.tasks]
lint = "isort --check --diff . && blue --check --diff ."
format = "isort . && blue ."
test = "coverage run -m unittest discover"
pre_test = "task lint"
post_test = "coverage report -m && coverage html"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
caesar = 'caesar_cipher.cli:app'