diff options
author | 2018-02-04 20:43:25 +0000 | |
---|---|---|
committer | 2018-02-04 20:43:25 +0000 | |
commit | 08f49431f426397491ac962960f0b275583dd13a (patch) | |
tree | 9964ba88e844ac3e8106208f623e32e5b33e8c18 | |
parent | Add basic bot (diff) |
Clean up repo structure
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | README.md | 5 | ||||
-rw-r--r-- | bot/__init__.py | 3 | ||||
-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 |