-
Notifications
You must be signed in to change notification settings - Fork 47
/
pyproject.toml
84 lines (74 loc) · 2.02 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
83
84
[build-system]
requires = ["hatchling>=1.5"]
build-backend = "hatchling.build"
[project]
name = "jupyter_packaging"
version = "0.12.3"
description = "Jupyter Packaging Utilities."
license = { file = "LICENSE" }
authors = [{name = "Jupyter Development Team", email = "[email protected]"}]
keywords = ["ipython", "jupyter", "packaging"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
]
requires-python = ">=3.8"
dependencies = [
"packaging>=22.0",
"tomlkit>=0.12.1",
"setuptools>=60.2.0",
"wheel>=0.41.1",
"deprecation>=2.1.0",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "http://jupyter.org"
Source = "https://github.com/jupyter/jupyter-packaging/"
"Bug Tracker" = "https://github.com/jupyter/jupyter-packaging/issues"
[project.optional-dependencies]
test = [
"build",
"coverage",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-timeout",
]
[tool.jupyter-releaser]
skip = ["check-links"]
[tool.tbump.version]
current = "0.12.3"
regex = '''
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?
'''
[tool.tbump.git]
message_template = "Bump to {new_version}"
tag_template = "v{new_version}"
[[tool.tbump.file]]
src = "jupyter_packaging/setupbase.py"
[[tool.tbump.file]]
src = "pyproject.toml"
[tool.pytest.ini_options]
addopts= "-raXs --durations 10 --color=yes --doctest-modules"
testpaths = [
"tests/"
]
timeout = 300
# Restore this setting to debug failures
# timeout_method = "thread"
filterwarnings= [
# Fail on warnings
"error",
# Ignore our own deprecation warnings.
"ignore:.*:deprecation.DeprecatedWarning",
# Ignore warning raised when importing setuptools.command.develop.
"ignore:pkg_resources is deprecated as an API:DeprecationWarning"
]