-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (45 loc) · 1023 Bytes
/
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
[project]
name = "versup"
version = "1.6.2"
description = "Version up your porject with ease."
readme = "README.md"
requires-python = ">=3.8"
authors=[{name="Sven Steinbauer", email="sven@unlogic.co.uk"}]
license={ file = "LICENSE.txt" }
dependencies = [
"click>=8.1.7",
"gitpython>=3.1.43",
"rich>=13.9.3",
"semver>=3.0.2",
]
[project.scripts]
versup = "versup.__main__:main"
[project.urls]
repository = "https://github.com/Svenito/versup"
[tool.uv]
dev-dependencies = [
"coverage>=7.6.1",
"coveralls>=4.0.1",
"flake8>=5.0.4",
"mypy>=1.13.0",
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
"sphinx>=7.1.2",
"sphinx-rtd-theme>=3.0.1",
"types-click>=7.1.8",
"isort>=5.13.2",
"ruff>=0.7.1",
]
package = true
[tool.ruff.lint]
select = ["E", "F"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
[tool.isort]
profile = "black"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"