-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
59 lines (51 loc) · 1.43 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mumble"
version = "0.0.1"
description = "Finding the perfect modification for your mass shift"
readme = "README.md"
keywords = [
"Modification",
"Mass Shift",
"Mapping",
]
authors = [{ name = "Arthur Declercq", email = "Arthur.Declercq@hotmail.com" }]
license = { file = "LICENSE" }
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"click >= 8.0.1",
"rich >= 13.0.0",
"pyteomics >= 4.7.3",
"pandas >= 1.5.0",
"psm_utils >= 0.9.0",
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = ["ruff", "black", "pytest", "pre-commit", "bumpver"]
[project.scripts]
mumble = "mumble.__main__:main"
[tool.black]
line-length = 99
target-version = ['py38']
[tool.ruff]
line-length = 99
target-version = 'py38'
[tool.ruff.lint]
extend-select = ["T201", "T203"]
[tool.bumpver]
current_version = "0.0.1"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"mumble/__init__.py" = ["{version}"]