Skip to content

Commit

Permalink
Comment out [project] section of pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
tleonhardt committed Oct 18, 2024
1 parent 7832e94 commit 53542a3
Showing 1 changed file with 77 additions and 77 deletions.
154 changes: 77 additions & 77 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,83 +5,83 @@ requires = [
]
build-backend = "setuptools.build_meta"

[project]
name = "cmd2"
description = "Quickly build feature-rich and user-friendly interactive command line applications in Python"
readme = "README.md"
license.file = "LICENSE"
authors = [ { name = "cmd2 Contributors" } ]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
]
keywords = [
"cmd",
"command",
"console",
"prompt",
]
dynamic = [
"version",
]
dependencies = [
"pyperclip",
"wcwidth",
'gnureadline ; platform_system == "Darwin"',
'pyreadline3 ; platform_system == "Windows"',
]
[project.optional-dependencies]
dev = [
"codecov",
"doc8",
"flake8",
"Flake8-pyproject",
"black",
"isort",
"invoke",
"mypy",
"nox",
"pytest",
"pytest-cov",
"pytest-mock",
"sphinx",
"sphinx-rtd-theme",
"sphinx-autobuild",
"twine",
]
test = [
"codecov",
"coverage",
"pytest",
"pytest-cov",
"pytest-mock",
]
validate = [
"flake8",
"Flake8-pyproject",
"mypy",
"types-setuptools",
]
[project.urls]
documentation = "https://cmd2.readthedocs.io/"
repository = "https://github.com/python-cmd2/cmd2"
#[project]
#name = "cmd2"
#description = "Quickly build feature-rich and user-friendly interactive command line applications in Python"
#readme = "README.md"
#license.file = "LICENSE"
#authors = [ { name = "cmd2 Contributors" } ]
#requires-python = ">=3.8"
#classifiers = [
# "Development Status :: 5 - Production/Stable",
# "Environment :: Console",
# "Intended Audience :: Developers",
# "Intended Audience :: System Administrators",
# "License :: OSI Approved :: MIT License",
# "Operating System :: MacOS",
# "Operating System :: Microsoft :: Windows",
# "Operating System :: POSIX",
# "Operating System :: Unix",
# "Programming Language :: Python",
# "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",
# "Programming Language :: Python :: 3.12",
# "Programming Language :: Python :: Implementation :: CPython",
# "Topic :: Software Development :: Libraries",
#]
#keywords = [
# "cmd",
# "command",
# "console",
# "prompt",
#]
#dynamic = [
# "version",
#]
#dependencies = [
# "pyperclip",
# "wcwidth",
# 'gnureadline ; platform_system == "Darwin"',
# 'pyreadline3 ; platform_system == "Windows"',
#]
#[project.optional-dependencies]
#dev = [
# "codecov",
# "doc8",
# "flake8",
# "Flake8-pyproject",
# "black",
# "isort",
# "invoke",
# "mypy",
# "nox",
# "pytest",
# "pytest-cov",
# "pytest-mock",
# "sphinx",
# "sphinx-rtd-theme",
# "sphinx-autobuild",
# "twine",
#]
#test = [
# "codecov",
# "coverage",
# "pytest",
# "pytest-cov",
# "pytest-mock",
#]
#validate = [
# "flake8",
# "Flake8-pyproject",
# "mypy",
# "types-setuptools",
#]
#[project.urls]
#documentation = "https://cmd2.readthedocs.io/"
#repository = "https://github.com/python-cmd2/cmd2"

[tool.black]
skip-string-normalization = true
Expand Down

0 comments on commit 53542a3

Please sign in to comment.