Skip to content
This repository has been archived by the owner on Jun 3, 2020. It is now read-only.

Commit

Permalink
Add Python packaging specs
Browse files Browse the repository at this point in the history
  • Loading branch information
jwflory committed May 3, 2019
1 parent a191822 commit 64fe912
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
container_cli
=============
cntnr
=====

Python CLI wrapper script to perform basic container management tasks
CLI wrapper for basic container (Docker/libpod) management tasks


## About

This is a Python wrapper script to simplify specific tasks in a container environment.
It is designed to work with your container management tool of choice (currently `podman` and `docker`).
It is designed to work with your container runtime of choice (currently `podman` and `docker`).
A CLI menu makes these selections possible.

This project was created for a lab assignment in NSSA-244 Virtualization at the [Rochester Institute of Technology](https://www.rit.edu/).
Expand All @@ -16,3 +16,4 @@ This project was created for a lab assignment in NSSA-244 Virtualization at the
## Legal

Licensed under Mozilla Public License 2.0.
Created by Justin W. Flory.
1 change: 1 addition & 0 deletions cntnr/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.0.1'
36 changes: 36 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
[metadata]
name = cntnr
version = attr: cntnr.__version__
url = https://github.com/jwflory/cntnr
author = Justin W. Flory
license = Mozilla Public License 2.0 (MPLv2)
description = CLI wrapper script to perform basic container management tasks
long_description = file: README.md
long_description_content_type = text/markdown
keywords = containers, Docker, Podman, libpod, CLI, tool
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Topic :: System :: Systems Administration
Topic :: Utilities

[options]
zip_safe = False
python_requires = >=3
include_package_data = True
packages = find:

[options.entry_points]
console_scripts =
cntnr = cntnr.container_cli:main

[options.package_data]
* = *.txt, *.rst
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import setuptools

setuptools.setup()

0 comments on commit 64fe912

Please sign in to comment.