-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
82 lines (74 loc) · 2.88 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
79
80
81
82
[project]
name = "jupyter-analysis-tools"
description = "Yet another Python library with helpers and utilities for data analysis and processing."
authors = [{ name = "Ingo Breßler", email = "[email protected]" }]
dynamic = ["version", "readme"]
license = {text = "MIT license"}
classifiers = [
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Framework :: Jupyter :: JupyterLab",
"Topic :: Utilities",
"Topic :: Scientific/Engineering",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
]
[project.urls]
homepage = "https://BAMresearch.github.io/jupyter-analysis-tools"
documentation = "https://BAMresearch.github.io/jupyter-analysis-tools"
repository = "https://github.com/BAMresearch/jupyter-analysis-tools"
changelog = "https://BAMresearch.github.io/jupyter-analysis-tools/changelog.html"
[build-system]
requires = [
"setuptools>=40.6",
"wheel",
]
# check-manifest checks that, https://github.com/mgedmin/check-manifest/commit/c9df78
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["jupyter_analysis_tools*"]
[tool.setuptools.dynamic]
version = {attr = "jupyter_analysis_tools.__version__"}
readme = {file = ["README.rst", "CHANGELOG.md"]}
[tool.coverage.report]
path = "coverage-report"
# on version numbers: https://peps.python.org/pep-0440/
# and bottom of https://softwareengineering.stackexchange.com/a/151558
[tool.semantic_release]
#major_on_zero = false # no major release when current major version is zero
version_variables = [ # version location
"src/jupyter_analysis_tools/__init__.py:__version__",
"docs/conf.py:version",
]
[tool.semantic_release.commit_parser_options]
allowed_tags = ["build", "chore", "ci", "docs", "feat", "enh", "fix", "perf", "style", "refactor", "test"]
minor_tags = ["feat", "enh"]
patch_tags = ["fix", "perf"]
[tool.semantic_release.changelog]
exclude_commit_patterns = ["chore", ".*\\bGHA\\b.*", ".*\\b[gG][hH] actions?\\b.*"]
[tool.semantic_release.publish]
upload_to_vcs_release = false
[tool.black]
line-length = 100
preview = true
[tool.isort]
profile = "black"
line_length = 100
group_by_package = true
known_first_party = "jupyter_analysis_tools"
ensure_newline_before_comments = true
extend_skip = ["ci/templates", ".ipynb_checkpoints"]