From 4ce771d0eaaa0653d451bac8481d155d6d8ad117 Mon Sep 17 00:00:00 2001 From: Espy | Neko | 404 <34942042+neko404notfound@users.noreply.github.com> Date: Tue, 22 May 2018 22:22:06 +0100 Subject: [PATCH] Init files (#10) * Create __init__.py * Create __init__.py * Update __init__.py * Update __init__.py * Create __init__.py * Create __init__.py --- src/__init__.py | 15 +++++++++++++++ src/cogs/__init__.py | 2 ++ src/config/__init__.py | 2 ++ src/shared_libs/__init__.py | 2 ++ 4 files changed, 21 insertions(+) create mode 100644 src/__init__.py create mode 100644 src/cogs/__init__.py create mode 100644 src/config/__init__.py create mode 100644 src/shared_libs/__init__.py diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..0f704d9 --- /dev/null +++ b/src/__init__.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python3.6 +# -*- coding: utf-8 -*- +""" +Sebi-Machine. +""" + +__author__ = 'Annihilator708' +# TODO: add yourselves here. I can't remember everyones handles. +__contributors__ = (__author__, 'Neko404NotFound',) +__license__ = 'MIT' +__title__ = 'Sebi-Machine' +__version__ = 'tbd' + +__repository__ = f'https://github.com/{__author__}/{__title__}' +__url__ = __repository__ diff --git a/src/cogs/__init__.py b/src/cogs/__init__.py new file mode 100644 index 0000000..ed9dcc7 --- /dev/null +++ b/src/cogs/__init__.py @@ -0,0 +1,2 @@ +#!/usr/bin/env python3.6 +# -*- coding: utf-8 -*- diff --git a/src/config/__init__.py b/src/config/__init__.py new file mode 100644 index 0000000..ed9dcc7 --- /dev/null +++ b/src/config/__init__.py @@ -0,0 +1,2 @@ +#!/usr/bin/env python3.6 +# -*- coding: utf-8 -*- diff --git a/src/shared_libs/__init__.py b/src/shared_libs/__init__.py new file mode 100644 index 0000000..ed9dcc7 --- /dev/null +++ b/src/shared_libs/__init__.py @@ -0,0 +1,2 @@ +#!/usr/bin/env python3.6 +# -*- coding: utf-8 -*-