-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (38 loc) · 944 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
[tool.poetry]
name = "python-library"
version = "1.1.4"
description = "Provide base template for python library"
authors = ["JaeyoungHeo <[email protected]>"]
maintainers = ["JaeyoungHeo <[email protected]>"]
readme = "README.md"
repository = "https://github.com/8percent/python-library"
license = "MIT"
packages = [
{ include = "python_library", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.10 <3.13"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
isort = "^5.13.2"
tox = "^4.11.4"
flake8 = "^6.1.0"
pytest-cov = "^4.1.0"
black = "^23.12.0"
pre-commit = "^3.6.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# Lint Configurations
[tool.isort]
profile = "black"
line_length = 88
[tool.black]
preview = true
line-length = 88
target-version = ['py310', 'py311', 'py312']
[tool.pytest.ini_options]
addopts = "-p no:cacheprovider"
testpaths = [
"tests",
]