-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (35 loc) · 864 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "ccna"
version = "0.1.0"
description = ""
authors = ["Cedric Anover <cedric.anover@hotmail.com>"]
readme = "README.md"
packages = [{include = "ccna", from = "src"}]
# [tool.poetry.scripts]
# ccna = "ccna.main:main"
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
# flake8 = "^7.1.1"
# https://pypi.org/project/pyproject-flake8/
pyproject-flake8 = "^7.0.0" # Usage: `poetry run pflake8`
[tool.poetry.group.test.dependencies]
pytest = "^8.3.2"
[tool.flake8]
max-line-length = 120
ignore = ["E226", "E302", "E41", "E501", "W293"]
extend-ignore = []
exclude = [
".git",
"__pycache__",
"docs/source/conf.py",
"build",
"dist",
"venv",
".venv"
]
[tool.flake8.files]
include = ["src/**/*.py"]