shinku 0.0.1.dev0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: shinku
3
+ Version: 0.0.1.dev0
4
+ Summary:
5
+ Keywords:
6
+ Author: bromothymolb
7
+ Author-email: bromothymolb <bromothymolb@qq.com>
8
+ License-Expression: MIT
9
+ Requires-Python: >=3.11
10
+ Description-Content-Type: text/markdown
11
+
File without changes
@@ -0,0 +1,69 @@
1
+ [project]
2
+ name = "shinku"
3
+ version = "0.0.1.dev"
4
+ description = ""
5
+ license = "MIT"
6
+ readme = "README.md"
7
+ keywords = []
8
+ classifiers = []
9
+ requires-python = ">=3.11"
10
+ dependencies = []
11
+
12
+ [[project.authors]]
13
+ name = "bromothymolb"
14
+ email = "bromothymolb@qq.com"
15
+
16
+ [build-system]
17
+ requires = ["uv_build"]
18
+ build-backend = "uv_build"
19
+
20
+ [tool.uv.build-backend]
21
+ module-name = "shinku"
22
+ module-root = ""
23
+
24
+ [tool.ruff]
25
+ line-length = 88
26
+ target-version = "py311"
27
+
28
+ [tool.ruff.format]
29
+ line-ending = "cr-lf"
30
+
31
+ [tool.ruff.lint]
32
+ select = [
33
+ "F",
34
+ "W",
35
+ "E",
36
+ "I",
37
+ "UP",
38
+ "ASYNC",
39
+ "B",
40
+ "C4",
41
+ "T10",
42
+ "Q",
43
+ "TID",
44
+ "RUF",
45
+ "FURB",
46
+ ]
47
+ ignore = [
48
+ "E402",
49
+ "E501",
50
+ "E741",
51
+ "UP037",
52
+ "RUF001",
53
+ "RUF002",
54
+ "RUF003",
55
+ ]
56
+
57
+ [tool.ruff.lint.isort]
58
+ force-sort-within-sections = true
59
+ known-first-party = ["shinku"]
60
+
61
+ [tool.pyright]
62
+ pythonVersion = "3.11"
63
+ pythonPlatform = "All"
64
+ typeCheckingMode = "standard"
65
+ reportMissingImports = false
66
+ disableBytesTypePromotions = true
67
+
68
+ [[tool.pyright.executionEnvironments]]
69
+ root = "./"
@@ -0,0 +1,65 @@
1
+ [project]
2
+ name = "shinku"
3
+ version = "0.0.1.dev"
4
+ description = ""
5
+ authors = [{ name = "bromothymolb", email = "bromothymolb@qq.com" }]
6
+ license = "MIT"
7
+ readme = "README.md"
8
+ keywords = []
9
+ classifiers = []
10
+ requires-python = ">=3.11"
11
+ dependencies = []
12
+
13
+ [build-system]
14
+ requires = ["uv_build"]
15
+ build-backend = "uv_build"
16
+
17
+ [tool.uv.build-backend]
18
+ module-name = "shinku"
19
+ module-root = ""
20
+
21
+ [tool.ruff]
22
+ line-length = 88
23
+ target-version = "py311"
24
+
25
+ [tool.ruff.format]
26
+ line-ending = "cr-lf"
27
+
28
+ [tool.ruff.lint]
29
+ select = [
30
+ "F", # Pyflakes
31
+ "W", # pycodestyle warnings
32
+ "E", # pycodestyle errors
33
+ "I", # isort
34
+ "UP", # pyupgrade
35
+ "ASYNC", # flake8-async
36
+ "B", # flake8-bugbear
37
+ "C4", # flake8-comprehensions
38
+ "T10", # flake8-debugger
39
+ "Q", # flake8-quotes
40
+ "TID", # flake8-tidy-imports
41
+ "RUF", # Ruff-specific rules
42
+ "FURB", # refurb
43
+ ]
44
+ ignore = [
45
+ "E402", # module-import-not-at-top-of-file
46
+ "E501", # line-too-long
47
+ "E741", # ambiguous-variable-name
48
+ "UP037", # quoted-annotation
49
+ "RUF001", # ambiguous-unicode-character-string
50
+ "RUF002", # ambiguous-unicode-character-docstring
51
+ "RUF003", # ambiguous-unicode-character-comment
52
+ ]
53
+
54
+ [tool.ruff.lint.isort]
55
+ force-sort-within-sections = true
56
+ known-first-party = ["shinku"]
57
+
58
+ [tool.pyright]
59
+ pythonVersion = "3.11"
60
+ pythonPlatform = "All"
61
+ executionEnvironments = [{ root = "./" }]
62
+
63
+ typeCheckingMode = "standard"
64
+ reportMissingImports = false
65
+ disableBytesTypePromotions = true
File without changes