-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.17 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
[project]
name = "vinnie"
version = "0.9.0"
description = "A small utility to handle semantic versioning using only git tags"
readme = "README.md"
authors = [
{name = "Frank Wiles", email = "[email protected]"}
]
license = {text = "BSD License"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: System :: Systems Administration",
]
requires-python = ">=3.9"
dependencies = [
"Click>=7.1,<9.0",
"semver>=2.13.0",
"GitPython>=3.1.37",
]
[project.optional-dependencies]
test = [
"pytest==7.1.3",
"pytest-sugar==0.9.5",
"pytest-cov==3.0.0",
]
[project.urls]
Homepage = "https://github.com/revsys/vinnie/"
Issues = "https://github.com/revsys/vinine/issues"
[project.scripts]
vinnie = "vinnie.cli:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
"/venv",
"/tests",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test*.py"
addopts = "--cov"
norecursedirs = ".git .eggs build dist docs *.egg-info"