File tree 5 files changed +16
-1
lines changed
5 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 38
38
39
39
- name : mypy type checker for `src/ninjar`
40
40
run : |
41
- mypy src/ninjar --pretty --strict
41
+ mypy
Original file line number Diff line number Diff line change 10
10
! LICENSE
11
11
! .gitignore
12
12
13
+ ! py.typed
13
14
! * .py
14
15
! * .md
15
16
! pyproject.toml
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ classifiers = [
12
12
" Programming Language :: Python :: Implementation :: CPython" ,
13
13
" License :: OSI Approved :: BSD License" ,
14
14
" Operating System :: OS Independent" ,
15
+ " Typing :: Typed" ,
15
16
]
16
17
dependencies = [
17
18
" colorama>=0.4.5" ,
@@ -26,3 +27,9 @@ version = "1.0.0"
26
27
27
28
[project .urls ]
28
29
Repository = " https://github.com/XiangYyang/ninjar.git"
30
+
31
+ [tool .mypy ]
32
+ exclude = [" .venv" ]
33
+ files = [" src" , " tests" ]
34
+ pretty = true
35
+ strict = true
Original file line number Diff line number Diff line change
1
+ # -*- coding: utf-8 -*-
2
+ # SPDX-License-Identifier: BSD-3-Clause-Clear
3
+ # Copyright (c) XiangYang, all rights reserved.
4
+
5
+ """
6
+ Tests
7
+ """
You can’t perform that action at this time.
0 commit comments