|
2 | 2 | requires = ["build", "setuptools>=64", "setuptools-scm>=8"]
|
3 | 3 | build-backend = "setuptools.build_meta"
|
4 | 4 |
|
| 5 | +[project] |
| 6 | +name = "cmd2" |
| 7 | +dynamic = ["version"] |
| 8 | +description = "cmd2 - quickly build feature-rich and user-friendly interactive command line applications in Python" |
| 9 | +authors = [{ name = "cmd2 Contributors" }] |
| 10 | +readme = "README.md" |
| 11 | +requires-python = ">=3.8" |
| 12 | +keywords = [ |
| 13 | + "CLI", |
| 14 | + "cmd", |
| 15 | + "command", |
| 16 | + "interactive", |
| 17 | + "prompt", |
| 18 | + "Python", |
| 19 | +] |
| 20 | +license = { file = "LICENSE" } |
| 21 | +classifiers = [ |
| 22 | + "Development Status :: 5 - Production/Stable", |
| 23 | + "Environment :: Console", |
| 24 | + "Operating System :: OS Independent", |
| 25 | + "Intended Audience :: Developers", |
| 26 | + "Intended Audience :: System Administrators", |
| 27 | + "License :: OSI Approved :: MIT License", |
| 28 | + "Programming Language :: Python :: 3 :: Only", |
| 29 | + "Programming Language :: Python :: 3.8", |
| 30 | + "Programming Language :: Python :: 3.9", |
| 31 | + "Programming Language :: Python :: 3.10", |
| 32 | + "Programming Language :: Python :: 3.11", |
| 33 | + "Programming Language :: Python :: 3.12", |
| 34 | + "Programming Language :: Python :: 3.13", |
| 35 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 36 | +] |
| 37 | +dependencies = [ |
| 38 | + "gnureadline; platform_system == 'Darwin'", |
| 39 | + "pyperclip", |
| 40 | + "pyreadline3; platform_system == 'Windows'", |
| 41 | + "wcwidth", |
| 42 | +] |
| 43 | + |
| 44 | +[project.optional-dependencies] |
| 45 | +build = [ |
| 46 | + "build", |
| 47 | + "setuptools", |
| 48 | + "setuptools-scm", |
| 49 | +] |
| 50 | +dev = [ |
| 51 | + "codecov", |
| 52 | + "doc8", |
| 53 | + "invoke", |
| 54 | + "mypy", |
| 55 | + "nox", |
| 56 | + "pytest", |
| 57 | + "pytest-cov", |
| 58 | + "pytest-mock", |
| 59 | + "sphinx", |
| 60 | + "sphinx-rtd-theme", |
| 61 | + "sphinx-autobuild", |
| 62 | + "ruff", |
| 63 | + "twine", |
| 64 | +] |
| 65 | +docs = [ |
| 66 | + "setuptools", |
| 67 | + "setuptools_scm", |
| 68 | + "sphinx", |
| 69 | + "sphinx-rtd-theme", |
| 70 | + "sphinx-autobuild", |
| 71 | +] |
| 72 | +test = [ |
| 73 | + "codecov", |
| 74 | + "coverage", |
| 75 | + "pytest", |
| 76 | + "pytest-cov", |
| 77 | + "pytest-mock", |
| 78 | +] |
| 79 | +validate = [ |
| 80 | + "mypy", |
| 81 | + "ruff", |
| 82 | + "types-setuptools", |
| 83 | +] |
| 84 | + |
5 | 85 | [tool.doc8]
|
6 | 86 | ignore-path = [
|
7 | 87 | "__pycache__",
|
@@ -232,3 +312,5 @@ docstring-code-format = false
|
232 | 312 | # This only has an effect when the `docstring-code-format` setting is
|
233 | 313 | # enabled.
|
234 | 314 | docstring-code-line-length = "dynamic"
|
| 315 | + |
| 316 | +[tool.setuptools_scm] |
0 commit comments