Skip to content

Commit 6b8a5bc

Browse files
author
Polle Vanhoof
committed
Make package pypi compliant
1 parent 4d28d18 commit 6b8a5bc

File tree

7 files changed

+32
-0
lines changed

7 files changed

+32
-0
lines changed
File renamed without changes.

python_progress_bar/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from progress_bar.py import enable_trapping
2+
from progress_bar.py import setup_scroll_area
3+
from progress_bar.py import destroy_scroll_area
4+
from progress_bar.py import draw_progress_bar
5+
from progress_bar.py import block_progress_bar
2.99 KB
Binary file not shown.

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
from distutils.core import setup
2+
setup(
3+
name = 'python_progress_bar',
4+
packages = ['python_progress_bar'],
5+
version = '1.0',
6+
license='MIT',
7+
description = 'A progress bar for python shell scripts (Linux)',
8+
author = 'Polle Vanhoof',
9+
author_email = 'vanhoofpolle@gmail.com',
10+
url = 'https://github.com/pollev/python_progress_bar',
11+
download_url = '',
12+
keywords = ['progress', 'bar', 'indicator'],
13+
install_requires=[
14+
],
15+
classifiers=[
16+
'Development Status :: 4 - Beta', # "3 - Alpha" / "4 - Beta" / "5 - Production/Stable"
17+
'Intended Audience :: Developers',
18+
'Topic :: Software Development :: Build Tools',
19+
'License :: OSI Approved :: MIT License',
20+
'Programming Language :: Python :: 3',
21+
'Programming Language :: Python :: 3.4',
22+
'Programming Language :: Python :: 3.5',
23+
'Programming Language :: Python :: 3.6',
24+
],
25+
)

0 commit comments

Comments
 (0)