-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (26 loc) · 915 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
from distutils.core import setup
try:
with open('README.rst') as file:
long_description = file.read()
except IOError:
long_description = "An annotated, single-line progress bar for terminals."
setup(
name='progress_bar',
version='9',
license='Apache License v2',
author='Florian Leitner',
author_email='[email protected]',
url='https://github.com/fnl/progress_bar',
description='An annotated, single-line progress bar for terminals.',
long_description=long_description,
py_modules=['progress_bar'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
],
)