Commit d14a59ef authored by nimrod's avatar nimrod
Browse files

CLI and package scaffolding.

Should be installable and the CLI should be there but do nothing.
parent a2f434e6
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -2,3 +2,10 @@
include:
  - project: shore/ci-stuff
    file: templates/pre-commit.yml
  - project: shore/ci-stuff
    file: templates/python.yml

install-wheel:
  extends: .install-wheel
  script:
    - deepclean -h

MANIFEST.in

0 → 100644
+5 −0
Original line number Diff line number Diff line
include *.rst
include *.txt
exclude .pre-commit-config.yaml
exclude .gitlab-ci.yml
exclude .gitignore

deepclean/__init__.py

0 → 100644
+3 −0
Original line number Diff line number Diff line
"""Clean old versions of Docker images."""

__version__ = "0.0.1"

deepclean/__main__.py

0 → 100644
+16 −0
Original line number Diff line number Diff line
"""Clean old versions of Docker images."""

import argparse


def main():
    """Main entrypoint."""
    parser = argparse.ArgumentParser(
        description=__doc__,
    )
    args = parser.parse_args()
    print(args)


if __name__ == "__main__":
    main()

setup.cfg

0 → 100644
+9 −0
Original line number Diff line number Diff line
[bumpversion]
current_version = 0.0.1
commit = True
tag = True

[bdist_wheel]
universal = 1

[bumpversion:glob:*/__init__.py]
Loading