1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
from setuptools import find_packages, setup
setup(
author="Marcin Kurczewski",
author_email="rr-@sakuya.pl",
name="urwid_readline",
description=(
"A textbox edit widget for urwid that supports readline shortcuts"
),
version="0.15",
url="https://github.com/rr-/urwid_readline",
packages=find_packages(),
install_requires=["urwid"],
classifiers=[
"Environment :: Console",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Desktop Environment",
"Topic :: Software Development",
"Topic :: Software Development :: Widget Sets",
"Topic :: Software Development :: Libraries :: Python Modules",
],
extras_require={
"dev": ["black", "pytest"],
},
)
|