forked from rr-/urwid_readline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 992 Bytes
/
setup.py
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="[email protected]",
name="urwid_readline",
description=(
"A textbox edit widget for urwid that supports readline shortcuts"
),
version="0.13",
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"],
},
)