Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# docker-pretty-ps (v.1.0.2)
# docker-pretty-ps (v.1.0.3)
Tired of that awful super wide ```docker ps``` output? I'm always shrinking my terminal output just to see what ```docker ps``` is trying saying... and it's making me go blind. If you commiserate, try `docker-pretty-ps`! Just run ```docker-pretty-ps``` and get your output long, instead of wide and with **COLORS!**

Use ```docker-pretty-ps``` to get all running containers, stopped containers, search for containers. You can do all this in a beautiful, colored, long output with only the data you requested.
Expand Down
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
26 changes: 25 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,26 @@
[metadata]
description-file = README.md
# replace with your username:
name = docker-pretty-ps
version = 1.0.3
author = Alix Fullerton
author_email = fullertonalix0@gmail.com
description = CLI tool for docker ps reading in a pretty format
long_description = file: README.md
long_description_content_type = text/markdown
scripts=['src/dockerprettyps/bin/docker-pretty-ps'],
url = https://github.com/politeauthority/docker-pretty-ps
project_urls =
Bug Tracker = https://github.com/politeauthority/docker-pretty-ps/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent

[options]
package_dir =
= src
packages = find:
python_requires = >=3.6

[options.packages.find]
where = src
21 changes: 2 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,6 @@
#!/usr/bin/env python
"""
Builds packages so that each package can be imported (and allow relative imports)

"""
import dockerprettyps
import setuptools


setuptools.setup(
name="docker-pretty-ps",
version=dockerprettyps.__version__,
author="politeauthority",
author_email="fullteronalix0@gmail.com",
url="https://github.com/politeauthority/docker-pretty-ps",
download_url="https://github.com/politeauthority/docker-pretty-ps/archive/v0.0.1-alpha.zip",
packages=setuptools.find_packages(),
scripts=['dockerprettyps/bin/docker-pretty-ps'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
scripts=['src/dockerprettyps/bin/docker-pretty-ps'],
)
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

from dockerprettyps import errors

__version__ = "1.0.2"
__version__ = "1.0.3"
__title__ = """
_ _ _ _
__| |___ __| |_____ _ _ ___ _ __ _ _ ___| |_| |_ _ _ ___ _ __ ___
Expand Down
File renamed without changes.