├── .github └── workflows │ └── python-app.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── darshellclock ├── __init__.py ├── __main__.py ├── cfg.py ├── clock.py ├── help.py ├── main.py └── utils.py ├── pytest.ini ├── setup.py ├── start.py └── tests └── test_fake.py /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darokin/darshell-clock/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darokin/darshell-clock/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darokin/darshell-clock/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darokin/darshell-clock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darokin/darshell-clock/HEAD/README.md -------------------------------------------------------------------------------- /darshellclock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /darshellclock/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darokin/darshell-clock/HEAD/darshellclock/__main__.py -------------------------------------------------------------------------------- /darshellclock/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darokin/darshell-clock/HEAD/darshellclock/cfg.py -------------------------------------------------------------------------------- /darshellclock/clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darokin/darshell-clock/HEAD/darshellclock/clock.py -------------------------------------------------------------------------------- /darshellclock/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darokin/darshell-clock/HEAD/darshellclock/help.py -------------------------------------------------------------------------------- /darshellclock/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darokin/darshell-clock/HEAD/darshellclock/main.py -------------------------------------------------------------------------------- /darshellclock/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darokin/darshell-clock/HEAD/darshellclock/utils.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darokin/darshell-clock/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darokin/darshell-clock/HEAD/setup.py -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darokin/darshell-clock/HEAD/start.py -------------------------------------------------------------------------------- /tests/test_fake.py: -------------------------------------------------------------------------------- 1 | def test_fake(): 2 | assert True 3 | --------------------------------------------------------------------------------