aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-02-04 20:43:25 +0000
committerGravatar Gareth Coles <[email protected]>2018-02-04 20:43:25 +0000
commit08f49431f426397491ac962960f0b275583dd13a (patch)
tree9964ba88e844ac3e8106208f623e32e5b33e8c18
parentAdd basic bot (diff)
Clean up repo structure
-rw-r--r--.gitignore3
-rw-r--r--README.md5
-rw-r--r--bot/__init__.py3
-rw-r--r--bot/__main__.py (renamed from __main__.py)0
4 files changed, 11 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 7bbc71c09..2895fff37 100644
--- a/.gitignore
+++ b/.gitignore
@@ -99,3 +99,6 @@ ENV/
# mypy
.mypy_cache/
+
+# PyCharm
+.idea/
diff --git a/README.md b/README.md
new file mode 100644
index 000000000..31df14133
--- /dev/null
+++ b/README.md
@@ -0,0 +1,5 @@
+Python Utility Bot
+==================
+
+This project is a Discord bot specifically for use with our Discord server. It will provide numerous utilities
+and other tools to help keep the server running like a well-oiled machine.
diff --git a/bot/__init__.py b/bot/__init__.py
new file mode 100644
index 000000000..2e00283e6
--- /dev/null
+++ b/bot/__init__.py
@@ -0,0 +1,3 @@
+# coding=utf-8
+
+__author__ = "Gareth Coles" \ No newline at end of file
diff --git a/__main__.py b/bot/__main__.py
index cb4157707..cb4157707 100644
--- a/__main__.py
+++ b/bot/__main__.py