Adding upstream version 3.0.27.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
05a4ce4154
commit
51331ec610
25 changed files with 105 additions and 56 deletions
24
setup.py
24
setup.py
|
@ -11,18 +11,26 @@ with open(os.path.join(os.path.dirname(__file__), "README.rst")) as f:
|
|||
setup(
|
||||
name="ptpython",
|
||||
author="Jonathan Slenders",
|
||||
version="3.0.26",
|
||||
version="3.0.27",
|
||||
url="https://github.com/prompt-toolkit/ptpython",
|
||||
description="Python REPL build on top of prompt_toolkit",
|
||||
long_description=long_description,
|
||||
package_urls={
|
||||
"Changelog": "https://github.com/prompt-toolkit/ptpython/blob/master/CHANGELOG",
|
||||
},
|
||||
project_urls={
|
||||
"Bug Tracker": "https://github.com/prompt-toolkit/ptpython/issues",
|
||||
"Source Code": "https://github.com/prompt-toolkit/ptpython",
|
||||
"Changelog": "https://github.com/prompt-toolkit/ptpython/blob/master/CHANGELOG",
|
||||
},
|
||||
packages=find_packages("."),
|
||||
package_data={"ptpython": ["py.typed"]},
|
||||
install_requires=[
|
||||
"appdirs",
|
||||
"importlib_metadata;python_version<'3.8'",
|
||||
"jedi>=0.16.0",
|
||||
# Use prompt_toolkit 3.0.34, because of `OneStyleAndTextTuple` import.
|
||||
"prompt_toolkit>=3.0.34,<3.1.0",
|
||||
# Use prompt_toolkit 3.0.43, because of `OneStyleAndTextTuple` import.
|
||||
"prompt_toolkit>=3.0.43,<3.1.0",
|
||||
"pygments",
|
||||
],
|
||||
python_requires=">=3.7",
|
||||
|
@ -30,8 +38,11 @@ setup(
|
|||
"License :: OSI Approved :: BSD License",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"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 :: 3 :: Only",
|
||||
"Programming Language :: Python",
|
||||
],
|
||||
|
@ -39,12 +50,11 @@ setup(
|
|||
"console_scripts": [
|
||||
"ptpython = ptpython.entry_points.run_ptpython:run",
|
||||
"ptipython = ptpython.entry_points.run_ptipython:run",
|
||||
"ptpython%s = ptpython.entry_points.run_ptpython:run" % sys.version_info[0],
|
||||
f"ptpython{sys.version_info[0]} = ptpython.entry_points.run_ptpython:run",
|
||||
"ptpython{}.{} = ptpython.entry_points.run_ptpython:run".format(
|
||||
*sys.version_info[:2]
|
||||
),
|
||||
"ptipython%s = ptpython.entry_points.run_ptipython:run"
|
||||
% sys.version_info[0],
|
||||
f"ptipython{sys.version_info[0]} = ptpython.entry_points.run_ptipython:run",
|
||||
"ptipython{}.{} = ptpython.entry_points.run_ptipython:run".format(
|
||||
*sys.version_info[:2]
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue