-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.05 KB
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
[tool.poetry]
name = "python-library"
version = "1.0.3"
description = "Provide base template for python library"
authors = ["JaeyoungHeo <jay.jaeyoung@gmail.com>"]
maintainers = ["JaeyoungHeo <jay.jaeyoung@gmail.com>"]
readme = "README.md"
repository = "https://github.com/8percent/python-library"
license = "MIT"
packages = [
{ include = "python_library", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.9 <3.11"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
isort = "^5.10.1"
tox = "^4.3.5"
flake8 = "^6.0.0"
pytest-cov = "^4.0.0"
codecov = "^2.1.12"
black = "^22.6.0"
pre-commit = "^3.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# Lint Configurations
[tool.isort]
force_single_line = "True"
profile = "black"
line_length = "79"
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
[tool.black]
preview = "True"
line-length = "79"
target-version = ['py310']
skip-string-normalization = "True"
[tool.pytest.ini_options]
addopts = "-p no:cacheprovider"
testpaths = [
"tests",
]