-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (59 loc) · 1.9 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
[tool.poetry]
version = "0.3.0"
name = "cosmicweb-music"
description = "Script to download initial conditions for zoom-in cosmological simulations from the cosmICweb service."
authors = [
"Michael Buehlmann <[email protected]>",
"Lukas Winkler <[email protected]>",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/cosmo-sims/cosmicweb-music"
repository = "https://github.com/cosmo-sims/cosmicweb-music"
documentation = "https://github.com/cosmo-sims/cosmicweb-music"
include = ["LICENSE"]
keywords = ["scientific computing"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
]
[tool.bumpversion]
current_version = "0.3.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
tag = true
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = false
commit = true
message = "Bump version: {current_version} → {new_version}"
commit_args = ""
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = "[tool.poetry]\nversion = \"{current_version}\""
replace = "[tool.poetry]\nversion = \"{new_version}\""
[[tool.bumpversion.files]]
filename = "cosmicweb_music/__init__.py"
search = "__version__ = \"{current_version}\""
replace = "__version__ = \"{new_version}\""
[tool.poetry.scripts]
cosmicweb-music = "cosmicweb_music.cosmICweb:cli"
[tool.poetry.dependencies]
python = "^3.9"
click = "^8.1.7"
requests = "^2.31.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
bump-my-version = "^0.20.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ["py38"]
include = '\.pyi?$'
exclude = '\.git|\.venv|build|_build|dist'