-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
27 lines (26 loc) · 1006 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
from distutils.core import setup
setup(
name = 'python_progress_bar',
packages = ['python_progress_bar'],
version = '1.10',
license='MIT',
description = 'A progress bar for python shell scripts (Linux)',
author = 'Polle Vanhoof',
author_email = '[email protected]',
long_description= 'Please refer to the full description on github',
url = 'https://github.com/pollev/python_progress_bar',
download_url = 'https://github.com/pollev/python_progress_bar/archive/v1.10.tar.gz',
keywords = ['progress', 'bar', 'indicator'],
install_requires=[
],
classifiers=[
'Development Status :: 4 - Beta', # "3 - Alpha" / "4 - Beta" / "5 - Production/Stable"
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)