Browse Source

Initial commit

dp 5 years ago
commit
8bdfbb63ce
2 changed files with 118 additions and 0 deletions
  1. 116
    0
      .gitignore
  2. 2
    0
      README.md

+ 116
- 0
.gitignore View File

@@ -0,0 +1,116 @@
1
+# ---> Python
2
+# Byte-compiled / optimized / DLL files
3
+__pycache__/
4
+*.py[cod]
5
+*$py.class
6
+
7
+# C extensions
8
+*.so
9
+
10
+# Distribution / packaging
11
+.Python
12
+build/
13
+develop-eggs/
14
+dist/
15
+downloads/
16
+eggs/
17
+.eggs/
18
+lib/
19
+lib64/
20
+parts/
21
+sdist/
22
+var/
23
+wheels/
24
+*.egg-info/
25
+.installed.cfg
26
+*.egg
27
+MANIFEST
28
+
29
+# PyInstaller
30
+#  Usually these files are written by a python script from a template
31
+#  before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+*.manifest
33
+*.spec
34
+
35
+# Installer logs
36
+pip-log.txt
37
+pip-delete-this-directory.txt
38
+
39
+# Unit test / coverage reports
40
+htmlcov/
41
+.tox/
42
+.nox/
43
+.coverage
44
+.coverage.*
45
+.cache
46
+nosetests.xml
47
+coverage.xml
48
+*.cover
49
+.hypothesis/
50
+.pytest_cache/
51
+
52
+# Translations
53
+*.mo
54
+*.pot
55
+
56
+# Django stuff:
57
+*.log
58
+local_settings.py
59
+db.sqlite3
60
+
61
+# Flask stuff:
62
+instance/
63
+.webassets-cache
64
+
65
+# Scrapy stuff:
66
+.scrapy
67
+
68
+# Sphinx documentation
69
+docs/_build/
70
+
71
+# PyBuilder
72
+target/
73
+
74
+# Jupyter Notebook
75
+.ipynb_checkpoints
76
+
77
+# IPython
78
+profile_default/
79
+ipython_config.py
80
+
81
+# pyenv
82
+.python-version
83
+
84
+# celery beat schedule file
85
+celerybeat-schedule
86
+
87
+# SageMath parsed files
88
+*.sage.py
89
+
90
+# Environments
91
+.env
92
+.venv
93
+env/
94
+venv/
95
+ENV/
96
+env.bak/
97
+venv.bak/
98
+
99
+# Spyder project settings
100
+.spyderproject
101
+.spyproject
102
+
103
+# Rope project settings
104
+.ropeproject
105
+
106
+# mkdocs documentation
107
+/site
108
+
109
+# mypy
110
+.mypy_cache/
111
+.dmypy.json
112
+dmypy.json
113
+
114
+# Pyre type checker
115
+.pyre/
116
+

+ 2
- 0
README.md View File

@@ -0,0 +1,2 @@
1
+# nec_discord_bot
2
+

Loading…
Cancel
Save