-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
54 lines (44 loc) · 1.1 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
[tool.poetry]
name = "release-tools"
version = "0.6.0"
description = "Set of tools to generate Python releases."
authors = [
"Santiago Dueñas <[email protected]>"
]
license = "GPL-3.0-or-later"
readme = "README.md"
packages = [
{ include = "release_tools"},
{ include = "tests", format = "sdist" },
]
include = [
{ path = "AUTHORS", format = "sdist" },
{ path = "NEWS", format = "sdist" },
{ path = "README.md", format = "sdist" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
]
keywords = [
"development",
"build",
]
[tool.poetry.scripts]
changelog = 'release_tools.changelog:changelog'
semverup = 'release_tools.semverup:semverup'
notes = 'release_tools.notes:notes'
publish = 'release_tools.publish:publish'
[tool.poetry.dependencies]
python = "^3.9"
click = "^7.0"
PyYAML = "^6.0.1"
semver = "^2.9"
tomlkit = "^0.5.8"
[tool.poetry.dev-dependencies]
flake8 = "^7.1.1"
coverage = "^7.2.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"