diff --git a/LICENSE b/LICENSE.txt similarity index 100% rename from LICENSE rename to LICENSE.txt diff --git a/python_progress_bar/__init__.py b/python_progress_bar/__init__.py new file mode 100644 index 0000000..9662e55 --- /dev/null +++ b/python_progress_bar/__init__.py @@ -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 diff --git a/python_progress_bar/__pycache__/progress_bar.cpython-38.pyc b/python_progress_bar/__pycache__/progress_bar.cpython-38.pyc new file mode 100644 index 0000000..300221f Binary files /dev/null and b/python_progress_bar/__pycache__/progress_bar.cpython-38.pyc differ diff --git a/progress_bar.py b/python_progress_bar/progress_bar.py similarity index 100% rename from progress_bar.py rename to python_progress_bar/progress_bar.py diff --git a/test_bar.py b/python_progress_bar/test_bar.py similarity index 100% rename from test_bar.py rename to python_progress_bar/test_bar.py diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b88034e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..a8c2e66 --- /dev/null +++ b/setup.py @@ -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 = 'vanhoofpolle@gmail.com', + 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', + ], +)