-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
29 lines (26 loc) · 897 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
[tool.poetry]
name = "single-version"
version = "1.6.0"
description = "Small utility to define version string for Poetry-style Python project."
authors = ["Nguyễn Hồng Quân <ng.hong.quan@gmail.com>"]
maintainers = [
"Nguyễn Hồng Quân <ng.hong.quan@gmail.com>"
]
readme = "README.rst"
license = {text = "MIT", file = "LICENSE"}
homepage = "https://github.com/hongquan/single-version"
repository = "https://github.com/hongquan/single-version.git"
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3 :: Only"
]
[tool.poetry.dependencies]
python = "^3.7"
importlib_metadata = { version = "^2.0", python = "< 3.8" }
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
ruff = "^0.0.284"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"