-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
78 lines (66 loc) · 1.52 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "project_name"
description = "project_description"
authors = [{ name = "author_name", email = "liangy3928@gmail.com" }]
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
readme = "README.md"
# keywords = ["CDK", "AWS", "Python", "Test", "Helper"]
# dependencies = ["aws-cdk-lib>=2.1.0, <3.0.0", "constructs>=10.0.5, <11.0.0"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/author_name/project_urlname"
repository = "https://github.com/author_name/project_urlname"
[tool.black]
line-length = 88
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
black formatter
/(
\.eggs
| \.env
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.pytest.ini_options]
addopts = "-vv -s"
log_cli_level = "debug"
markers = []
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = { attr = "project_name.__version__" }
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.1.0"
version_files = ["pyproject.toml:version"]
[tool.pyright]
include = ["project_name"]
exclude = [
"**/node_modules",
"**/__pycache__",
".env"
]
defineConstant = { DEBUG = true }
stubPath = "src/stubs"
venv = ".env"
venvPath = "."
reportMissingImports = true
reportMissingTypeStubs = false
pythonVersion = "3.10"
pythonPlatform = "Linux"