-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
71 lines (66 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "changes"
version = "0.7.0"
description = "changes manages software project releases"
readme = "README.md"
authors = ["Michael Joseph <michaeljoseph+github@gmail.com>"]
repository = "https://github.com/michaeljoseph/changes"
homepage = "https://changes.readthedocs.io/en/latest/"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
packages = [
{ include = "changes" }
]
include = [
"README.md",
"CHANGELOG.md",
"LICENSE",
"tests/**/*",
"docs/**/*",
]
[tool.poetry.scripts]
changes = "changes.cli:main"
[tool.poetry.dependencies]
python = ">=3.7"
click = "^7."
plumbum = "^1.6"
requests = "^2.22"
"giturlparse.py" = "^0.0.5"
semantic_version = "^2.6"
uritemplate = "^3.0"
bumpversion = "^0.5.3"
attrs = "^19.1"
requests-cache = "^0.5.0"
inflection = "^0.3.1"
mkdocs-click = "^0.4.0"
pip = "^21.1.2"
[tool.poetry.dev-dependencies]
pytest = "^5.0"
pytest-cov = "^2.7"
pytest-mock = "^1.10"
pytest-watch = "^4.2"
responses = "^0.10.6"
haikunator = "^2.1"
pre-commit = "^1.18"
mkdocs = "^1.0"
pdoc3 = "^0.6.3"
pymdown-extensions = "^8.0"
mkdocs-material = "^7.0"
markdown_include = "^0.5.1"
pytest-html = "^1.22"
pytest-md = "^0.2.0"
[tool.black]
line-length = 88
skip-string-normalization = "True"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"