summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-11-11 10:00:08 +0100
committerLars Wirzenius <liw@liw.fi>2017-11-11 10:00:08 +0100
commit1c7061a6076f9510c27933551fff3664319a35cd (patch)
tree3180576a186751e00ece1d7fee561fbb334206c7
parent00b6b687cc2232cc850ecacf424dc41ecde2de4c (diff)
downloadttystatus-1c7061a6076f9510c27933551fff3664319a35cd.tar.gz
Refactor: reformat setup.py
-rw-r--r--setup.py23
1 files changed, 12 insertions, 11 deletions
diff --git a/setup.py b/setup.py
index 00aabe7..fbb444b 100644
--- a/setup.py
+++ b/setup.py
@@ -19,14 +19,15 @@ from distutils.core import setup
import ttystatus
-setup(name='ttystatus',
- version=ttystatus.__version__,
- description='terminal progress bar and status output for command line',
- long_description='''\
+setup(
+ name='ttystatus',
+ version=ttystatus.__version__,
+ description='terminal progress bar and status output for command line',
+ long_description='''\
The ttystatus Python library provides a simple widget-based way to show
progress and current status in command line programs.
''',
- classifiers=[
+ classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
@@ -35,9 +36,9 @@ progress and current status in command line programs.
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: User Interfaces',
'Topic :: Terminals',
- ],
- author='Lars Wirzenius',
- author_email='liw@liw.fi',
- url='http://liw.fi/ttystatus/',
- packages=['ttystatus'],
- )
+ ],
+ author='Lars Wirzenius',
+ author_email='liw@liw.fi',
+ url='http://liw.fi/ttystatus/',
+ packages=['ttystatus'],
+)