@@ -5,83 +5,83 @@ requires = [
5
5
]
6
6
build-backend = " setuptools.build_meta"
7
7
8
- [project ]
9
- name = " cmd2"
10
- description = " Quickly build feature-rich and user-friendly interactive command line applications in Python"
11
- readme = " README.md"
12
- license.file = " LICENSE"
13
- authors = [ { name = " cmd2 Contributors" } ]
14
- requires-python = " >=3.8"
15
- classifiers = [
16
- " Development Status :: 5 - Production/Stable" ,
17
- " Environment :: Console" ,
18
- " Intended Audience :: Developers" ,
19
- " Intended Audience :: System Administrators" ,
20
- " License :: OSI Approved :: MIT License" ,
21
- " Operating System :: MacOS" ,
22
- " Operating System :: Microsoft :: Windows" ,
23
- " Operating System :: POSIX" ,
24
- " Operating System :: Unix" ,
25
- " Programming Language :: Python" ,
26
- " Programming Language :: Python :: 3 :: Only" ,
27
- " Programming Language :: Python :: 3.8" ,
28
- " Programming Language :: Python :: 3.9" ,
29
- " Programming Language :: Python :: 3.10" ,
30
- " Programming Language :: Python :: 3.11" ,
31
- " Programming Language :: Python :: 3.12" ,
32
- " Programming Language :: Python :: Implementation :: CPython" ,
33
- " Topic :: Software Development :: Libraries" ,
34
- ]
35
- keywords = [
36
- " cmd" ,
37
- " command" ,
38
- " console" ,
39
- " prompt" ,
40
- ]
41
- dynamic = [
42
- " version" ,
43
- ]
44
- dependencies = [
45
- " pyperclip" ,
46
- " wcwidth" ,
47
- ' gnureadline ; platform_system == "Darwin"' ,
48
- ' pyreadline3 ; platform_system == "Windows"' ,
49
- ]
50
- [project .optional-dependencies ]
51
- dev = [
52
- " codecov" ,
53
- " doc8" ,
54
- " flake8" ,
55
- " Flake8-pyproject" ,
56
- " black" ,
57
- " isort" ,
58
- " invoke" ,
59
- " mypy" ,
60
- " nox" ,
61
- " pytest" ,
62
- " pytest-cov" ,
63
- " pytest-mock" ,
64
- " sphinx" ,
65
- " sphinx-rtd-theme" ,
66
- " sphinx-autobuild" ,
67
- " twine" ,
68
- ]
69
- test = [
70
- " codecov" ,
71
- " coverage" ,
72
- " pytest" ,
73
- " pytest-cov" ,
74
- " pytest-mock" ,
75
- ]
76
- validate = [
77
- " flake8" ,
78
- " Flake8-pyproject" ,
79
- " mypy" ,
80
- " types-setuptools" ,
81
- ]
82
- [project .urls ]
83
- documentation = " https://cmd2.readthedocs.io/"
84
- repository = " https://github.com/python-cmd2/cmd2"
8
+ # [project]
9
+ # name = "cmd2"
10
+ # description = "Quickly build feature-rich and user-friendly interactive command line applications in Python"
11
+ # readme = "README.md"
12
+ # license.file = "LICENSE"
13
+ # authors = [ { name = "cmd2 Contributors" } ]
14
+ # requires-python = ">=3.8"
15
+ # classifiers = [
16
+ # "Development Status :: 5 - Production/Stable",
17
+ # "Environment :: Console",
18
+ # "Intended Audience :: Developers",
19
+ # "Intended Audience :: System Administrators",
20
+ # "License :: OSI Approved :: MIT License",
21
+ # "Operating System :: MacOS",
22
+ # "Operating System :: Microsoft :: Windows",
23
+ # "Operating System :: POSIX",
24
+ # "Operating System :: Unix",
25
+ # "Programming Language :: Python",
26
+ # "Programming Language :: Python :: 3 :: Only",
27
+ # "Programming Language :: Python :: 3.8",
28
+ # "Programming Language :: Python :: 3.9",
29
+ # "Programming Language :: Python :: 3.10",
30
+ # "Programming Language :: Python :: 3.11",
31
+ # "Programming Language :: Python :: 3.12",
32
+ # "Programming Language :: Python :: Implementation :: CPython",
33
+ # "Topic :: Software Development :: Libraries",
34
+ # ]
35
+ # keywords = [
36
+ # "cmd",
37
+ # "command",
38
+ # "console",
39
+ # "prompt",
40
+ # ]
41
+ # dynamic = [
42
+ # "version",
43
+ # ]
44
+ # dependencies = [
45
+ # "pyperclip",
46
+ # "wcwidth",
47
+ # 'gnureadline ; platform_system == "Darwin"',
48
+ # 'pyreadline3 ; platform_system == "Windows"',
49
+ # ]
50
+ # [project.optional-dependencies]
51
+ # dev = [
52
+ # "codecov",
53
+ # "doc8",
54
+ # "flake8",
55
+ # "Flake8-pyproject",
56
+ # "black",
57
+ # "isort",
58
+ # "invoke",
59
+ # "mypy",
60
+ # "nox",
61
+ # "pytest",
62
+ # "pytest-cov",
63
+ # "pytest-mock",
64
+ # "sphinx",
65
+ # "sphinx-rtd-theme",
66
+ # "sphinx-autobuild",
67
+ # "twine",
68
+ # ]
69
+ # test = [
70
+ # "codecov",
71
+ # "coverage",
72
+ # "pytest",
73
+ # "pytest-cov",
74
+ # "pytest-mock",
75
+ # ]
76
+ # validate = [
77
+ # "flake8",
78
+ # "Flake8-pyproject",
79
+ # "mypy",
80
+ # "types-setuptools",
81
+ # ]
82
+ # [project.urls]
83
+ # documentation = "https://cmd2.readthedocs.io/"
84
+ # repository = "https://github.com/python-cmd2/cmd2"
85
85
86
86
[tool .black ]
87
87
skip-string-normalization = true
0 commit comments