Skip to content

Commit

Permalink
Make package pypi compliant
Browse files Browse the repository at this point in the history
  • Loading branch information
Polle Vanhoof committed Aug 22, 2020
1 parent 4d28d18 commit 6b8a5bc
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 0 deletions.
File renamed without changes.
5 changes: 5 additions & 0 deletions python_progress_bar/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from progress_bar.py import enable_trapping
from progress_bar.py import setup_scroll_area
from progress_bar.py import destroy_scroll_area
from progress_bar.py import draw_progress_bar
from progress_bar.py import block_progress_bar
Binary file not shown.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
from distutils.core import setup
setup(
name = 'python_progress_bar',
packages = ['python_progress_bar'],
version = '1.0',
license='MIT',
description = 'A progress bar for python shell scripts (Linux)',
author = 'Polle Vanhoof',
author_email = '[email protected]',
url = 'https://github.com/pollev/python_progress_bar',
download_url = '',
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',
],
)

0 comments on commit 6b8a5bc

Please sign in to comment.