-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (64 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (64 loc) · 1.69 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
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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "procstar"
dynamic = ["version"]
description = "Run my stuff!"
readme = "README.md"
license = {text = "BSD-3-Clause"}
authors = [
{name = "Alex Samuel", email = "alex@alexsamuel.net"},
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
requires-python = "==3.10.*"
dependencies = [
"orjson>=3",
"msgpack>=1",
"requests",
"websockets>=10",
]
optional-dependencies = {dev = ["build", "httpx", "pytest", "pytest-asyncio", "bump-my-version", "sphinx", "sphinx-rtd-theme"]}
[project.urls]
Repository = "https://github.com/apsis-scheduler/procstar"
[tool.maturin]
python-source = "python"
bindings = "bin"
[tool.setuptools.dynamic]
version = {attr = "procstar.__version__"}
[tool.setuptools.package-data]
# Include localhost cert used for int tests.
"procstar.testing" = ["*.crt", "*.key"]
[tool.pytest.ini_options]
testpaths = "tests/"
[tool.ruff]
line-length = 100
[tool.bumpversion]
current_version = "0.7.5"
commit = true
tag = true
tag_name = "v{new_version}"
[[tool.bumpversion.files]]
filename = "python/procstar/__init__.py"
[[tool.bumpversion.files]]
filename = "Cargo.toml"
search = "version = \"{current_version}\" # procstar"
replace = "version = \"{new_version}\" # procstar"
[[tool.bumpversion.files]]
filename = "tools/rhel8/conda-recipe/meta.yaml"
[dependency-groups]
dev = [
"build>=1.2.2.post1",
"bump-my-version>=1.2.0",
"httpx>=0.28.1",
"maturin[patchelf]>=1.9.1",
"pre-commit>=4.2.0",
"pytest>=8.4.1",
"pytest-asyncio>=1.0.0",
"ruff>=0.12.3",
"sphinx>=8.1.3",
"sphinx-rtd-theme>=3.0.2",
]