-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 885 Bytes
/
pyproject.toml
File metadata and controls
38 lines (31 loc) · 885 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "panel_api"
version = "0.6.2"
readme = "README.md"
[tool.setuptools.packages.find]
include = ["panel_api*"]
[tool.flake8]
max-line-length = 88
extend-ignore = ["F811"] # Redefinition of unused variable. Breaks for modular pytest fixtures
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
[tool.pylint] # Only use pylint for documentation checking. flake8 is the main linter
disable = "all"
enable = ["C0114", "C0116"]
[tool.semantic_release]
branch = "main"
version_variable = "panel_api/__init__.py:__version__"
version_toml = "pyproject.toml:project.version"
version_source = "tag"
commit_version_number = true
commit_message = "{version} [skip ci]"
tag_commit = true
major_on_zero = false
upload_to_pypi = false
upload_to_release = false
hvcs = "github"