From 82c7bc0cf4df9db100a49114dcbae449d548d98e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hans=20P=2E=20M=C3=B6ller?= Date: Sun, 30 Aug 2020 16:45:57 -0400 Subject: [PATCH] clean --- breeze-color | 36 -------------------------------- lubuntu-breeze-color/__init__.py | 0 tox.ini | 10 --------- 3 files changed, 46 deletions(-) delete mode 100755 breeze-color delete mode 100644 lubuntu-breeze-color/__init__.py delete mode 100644 tox.ini diff --git a/breeze-color b/breeze-color deleted file mode 100755 index deea656..0000000 --- a/breeze-color +++ /dev/null @@ -1,36 +0,0 @@ -#!/usr/bin/python3 -# coding=utf-8 - -# Copyright (C) 2020 Hans P. Möller -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -import sys -from argparse import ArgumentParser - -import lubuntuBreeze - -if __name__ == "__main__": - parser = ArgumentParser() - parser.add_argument('--version', - action='version', - version='%(prog)s 0.1') - options = parser.parse_args() - - # TODO translations replace gettext with _ ??? - # localesApp="lubuntu-breeze" - # localesDir="/usr/share/locale" - # gettext.bindtextdomain(localesApp, localesDir) - # gettext.textdomain(localesApp) - lubuntuBreeze.main(sys.argv) diff --git a/lubuntu-breeze-color/__init__.py b/lubuntu-breeze-color/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tox.ini b/tox.ini deleted file mode 100644 index 50ebc4d..0000000 --- a/tox.ini +++ /dev/null @@ -1,10 +0,0 @@ -# content of: tox.ini , put in same dir as setup.py -[tox] -envlist = py27,py36 - -[testenv] -# install pytest in the virtualenv where commands will be executed -deps = pytest -commands = - # NOTE: you can run any command line tool here - not just tests - pytest