Skip to content

Commit 7bbaeea

Browse files
authored
Merge pull request #14 from Alinvor/kernel
[DONE]合并分支
2 parents 620a096 + 56e7977 commit 7bbaeea

7 files changed

Lines changed: 639 additions & 7 deletions

File tree

.vscode/settings.json

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,22 @@
6565
],
6666
"python.pythonPath": "venv2/bin/python",
6767
"python.formatting.provider": "yapf",
68-
"python.languageServer": "Microsoft",
68+
"python.formatting.yapfArgs": [
69+
"--style", "{based_on_style: pep8 ,indent_width: 4, column_limit: 130}",
70+
],
71+
"python.languageServer": "Jedi",
72+
// "python.languageServer": "Microsoft",
6973
// "python.languageServer": "Pylance",
70-
"python.linting.pylintEnabled": false,
74+
"python.linting.enabled": true,
7175
"python.linting.flake8Enabled": true,
72-
"python.linting.flake8Args": ["--max-line-length=250"],
76+
"python.linting.flake8Args": [
77+
"--max-line-length=250",
78+
"--ignore=E251",
79+
"--verbose",
80+
],
81+
"python.linting.ignorePatterns": [".vscode/*.py", "**/site-packages/**/*.py"],
82+
"python.linting.lintOnSave": true,
83+
"python.linting.pylintEnabled": false,
7384
"python.testing.unittestArgs": [
7485
"-v",
7586
"-s",

LICENSE.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2016 The Python Packaging Authority (PyPA)
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of
4+
this software and associated documentation files (the "Software"), to deal in
5+
the Software without restriction, including without limitation the rights to
6+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7+
of the Software, and to permit persons to whom the Software is furnished to do
8+
so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
SOFTWARE.

MANIFEST.in

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# https://packaging.python.org/guides/using-manifest-in/
2+
3+
include pyproject.toml
4+
5+
# Include the README
6+
include *.md
7+
8+
# Include the license file
9+
include LICENSE.txt
10+

0 commit comments

Comments
 (0)