-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (61 loc) · 2.05 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.black]
line-length = 120
[tool.poetry]
name = "cdown"
version = "0.1.0"
description = "CLI interface and Python package to parse and validate CODEOWNERS files used by GitHub and GitLab (not tested with BitBucket yet)"
authors = ["W Augusto Andreoli <andreoliwa@gmail.com>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/andreoliwa/python-cdown"
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: Unix",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Utilities",
]
keywords=[
# eg: 'keyword1', 'keyword2', 'keyword3',
]
[tool.poetry.urls]
"Documentation" = "https://python-cdown.readthedocs.io/"
"Changelog" = "https://python-cdown.readthedocs.io/en/latest/changelog.html"
"Issue Tracker" = "https://github.com/andreoliwa/python-cdown/issues"
[tool.poetry.scripts]
cdown = "cdown.cli:code_owners_cli"
[tool.poetry.dependencies]
python = "^3.7"
click = "*"
sphinx = { version = ">=1.3", optional = true }
sphinx-rtd-theme = { version = "*", optional = true }
gitignore_parser = "*"
[tool.poetry.extras]
docs = ["sphinx", "sphinx-rtd-theme"]
[tool.poetry.dev-dependencies]
pytest = "*"
ipdb = "*"
jedi = "<0.18.0" # TODO: remove when this is fixed https://github.com/ipython/ipython/issues/12745
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.1.0"
# https://commitizen-tools.github.io/commitizen/bump/
tag_format = "v$version"
version_files = [
"docs/conf.py:version",
"pyproject.toml:version",
"README.rst",
"src/cdown/__init__.py"
]
update_changelog_on_bump = true
# https://commitizen-tools.github.io/commitizen/changelog/#incremental
changelog_incremental = true