-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
95 lines (85 loc) · 2.18 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=6.2",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "cltoolbox"
dynamic = ["readme", "version"]
description = "Python library for creating and manipulating CLIs"
dependencies = [
"docstring_parser",
"docutils"
]
license = {text = "BSD-3-Clause and MIT"}
authors = [
{name = "Tim Cera", email = "tim@cerazone.net"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = [
"python",
"cli",
"argparse",
"arguments",
"command line",
"keyword arguments",
"docstring"
]
[project.optional-dependencies]
dev = [
"black",
"cleanpy",
"twine",
"pytest",
"coverage",
"flake8",
"pytest-cov",
"pytest-mpl",
"pre-commit",
"black-nbconvert",
"blacken-docs",
"velin",
"isort",
"pyupgrade",
"commitizen"
]
[project.urls]
documentation = "https://timcera.bitbucket.io/cltoolbox/docs/index.html#cltoolbox-documentation"
github = "https://github.com/timcera/cltoolbox"
bitbucket = "https://bitbucket.org/timcera/cltoolbox/src/main/"
[tool]
[tool.commitizen]
name = "cz_conventional_commits"
version = "3.0.1"
tag_format = "v$version"
version_files = ["VERSION"]
update_changelog_on_bump = true
[tool.isort]
profile = "black"
[tool.setuptools]
license-files = ["LICENSE.txt"]
include-package-data = true
[tool.setuptools.dynamic]
readme = {file = "README.rst"}
version = {file = "VERSION"}
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests*", "examples*", "tools*", "docs*", "cltoolbox.tests*"]
[tool.setuptools_scm]