-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpyproject.toml
56 lines (50 loc) · 1.6 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
[tool.poetry]
name = "dunamai"
version = "1.23.0"
description = "Dynamic version generation"
license = "MIT"
authors = ["Matthew T. Kennerly <[email protected]>"]
readme = "README.md"
repository = "https://github.com/mtkennerly/dunamai"
keywords = ["version", "versioning", "dynamic"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
include = [
{ path = "CHANGELOG.md", format = "sdist" },
{ path = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.5"
packaging = ">=20.9" # 20.9 is the last with Python 3.5 compat
importlib-metadata = {version = ">=1.6.0", python = "<3.8"} # 2.1.1 is the last with Python 3.5 compat
[tool.poetry.dev-dependencies]
pytest = [
{ version = "^7.2", python = "^3.7" },
{ version = "^3.0", python = ">=3.5,<3.7" },
]
pre-commit = { version = "^2.20", python = "^3.7" }
pytest-cov = [
{ version = "^4.0", python = "^3.7" },
{ version = "^2.6", python = ">=3.5,<3.7" },
]
black = { version = "22.1.0", python = "^3.7" }
mypy = { version = "^0.982", python = "^3.7" }
ruff = {version = "^0.0.272", python = "^3.7"}
argparse-manpage = {version = "^4.6", python = ">=3.7"}
[tool.poetry.scripts]
dunamai = 'dunamai.__main__:main'
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
extend-select = ["W605", "N"]
ignore = ["E501"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"