Skip to content

Commit

Permalink
setup.py: drop python versions below 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
bretello committed Oct 29, 2023
1 parent 1227264 commit 551b597
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,34 +1,32 @@
from setuptools import setup

setup(
name='fancycompleter',
name="fancycompleter",
setup_requires="setupmeta",
versioning="devcommit",
maintainer="Daniel Hahler",
url='https://github.com/pdbpp/fancycompleter',
author='Antonio Cuni',
author_email='[email protected]',
py_modules=['fancycompleter'],
license='BSD',
description='colorful TAB completion for Python prompt',
keywords='rlcompleter prompt tab color completion',
url="https://github.com/pdbpp/fancycompleter",
author="Antonio Cuni",
author_email="[email protected]",
py_modules=["fancycompleter"],
license="BSD",
description="colorful TAB completion for Python prompt",
keywords="rlcompleter prompt tab color completion",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Topic :: Utilities",
],
],
install_requires=[
"pyrepl @ git+https://github.com/pdbpp/pyrepl@master#egg=pyrepl",
"pyreadline;platform_system=='Windows'",
]
],
)

0 comments on commit 551b597

Please sign in to comment.