-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (42 loc) · 1.08 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
# pyproject.toml
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tool-dq-workbench"
version = "0.9.14"
requires-python = ">=3.10"
dependencies = [
"flask>=3.1,<3.2",
"flask-wtf>=1.2,<2.0",
"aiohttp>=3.10,<4.0",
"pandas>=2.0,<2.3",
"python-dateutil>=2.9,<3.0",
"PyYAML>=6,<7",
"requests>=2.32,<3",
"gunicorn>=23,<25; sys_platform != 'win32'",
"waitress>=3.0,<4",
# Runtime scientific stack
"numpy>=1.26,<2.0", # has wheels for py3.10–3.12+
"scipy>=1.12,<1.16", # avoids the nonexistent 1.16.1 pin
]
[project.optional-dependencies]
# Install with: pip install -e .[dev]
dev = [
"pytest>=8.3,<9",
"bump-my-version",
]
[project.scripts]
dq-monitor = "app.cli:run_main"
dq-monitor-web = "app.web.app:main"
[tool.bumpversion]
current_version = "0.9.14"
commit = true
tag = true
tag_name = "v{new_version}"
commit_args = "--no-verify"
message = "Release v{new_version}"
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'