moat-src 0.6.0__tar.gz → 0.6.1__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.
Files changed (26) hide show
  1. {moat-src-0.6.0/moat_src.egg-info → moat_src-0.6.1}/PKG-INFO +6 -1
  2. {moat-src-0.6.0 → moat_src-0.6.1}/moat/src/_templates/make/py +2 -2
  3. {moat-src-0.6.0 → moat_src-0.6.1}/moat/src/_templates/pyproject.default.yaml +64 -63
  4. {moat-src-0.6.0 → moat_src-0.6.1/moat_src.egg-info}/PKG-INFO +6 -1
  5. {moat-src-0.6.0 → moat_src-0.6.1}/.gitignore +0 -0
  6. {moat-src-0.6.0 → moat_src-0.6.1}/Makefile +0 -0
  7. {moat-src-0.6.0 → moat_src-0.6.1}/moat/__init__.py +0 -0
  8. {moat-src-0.6.0 → moat_src-0.6.1}/moat/src/__init__.py +0 -0
  9. {moat-src-0.6.0 → moat_src-0.6.1}/moat/src/_hooks/pre-commit +0 -0
  10. {moat-src-0.6.0 → moat_src-0.6.1}/moat/src/_main.py +0 -0
  11. {moat-src-0.6.0 → moat_src-0.6.1}/moat/src/_templates/LICENSE.txt +0 -0
  12. {moat-src-0.6.0 → moat_src-0.6.1}/moat/src/_templates/Makefile +0 -0
  13. {moat-src-0.6.0 → moat_src-0.6.1}/moat/src/_templates/gitignore +0 -0
  14. {moat-src-0.6.0 → moat_src-0.6.1}/moat/src/_templates/moat/__init__.py +0 -0
  15. {moat-src-0.6.0 → moat_src-0.6.1}/moat/src/_templates/pyproject.forced.yaml +0 -0
  16. {moat-src-0.6.0 → moat_src-0.6.1}/moat/src/_templates/test_basic_py +0 -0
  17. {moat-src-0.6.0 → moat_src-0.6.1}/moat/src/inspect.py +0 -0
  18. {moat-src-0.6.0 → moat_src-0.6.1}/moat/src/test.py +0 -0
  19. {moat-src-0.6.0 → moat_src-0.6.1}/moat_src.egg-info/SOURCES.txt +0 -0
  20. {moat-src-0.6.0 → moat_src-0.6.1}/moat_src.egg-info/dependency_links.txt +0 -0
  21. {moat-src-0.6.0 → moat_src-0.6.1}/moat_src.egg-info/requires.txt +0 -0
  22. {moat-src-0.6.0 → moat_src-0.6.1}/moat_src.egg-info/top_level.txt +0 -0
  23. {moat-src-0.6.0 → moat_src-0.6.1}/pyproject.toml +0 -0
  24. {moat-src-0.6.0 → moat_src-0.6.1}/setup.cfg +0 -0
  25. {moat-src-0.6.0 → moat_src-0.6.1}/tests/__init__.py +0 -0
  26. {moat-src-0.6.0 → moat_src-0.6.1}/tests/test_basic.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: moat-src
3
- Version: 0.6.0
3
+ Version: 0.6.1
4
4
  Summary: Tools for managing the MoaT sources
5
5
  Author-email: Matthias Urlichs <matthias@urlichs.de>
6
6
  Project-URL: homepage, https://m-o-a-t.org
@@ -15,3 +15,8 @@ Classifier: License :: OSI Approved
15
15
  Classifier: Development Status :: 4 - Beta
16
16
  Requires-Python: >=3.8
17
17
  Description-Content-Type: text/x-rst
18
+ Requires-Dist: anyio~=3.0
19
+ Requires-Dist: tomlkit~=0.12
20
+ Requires-Dist: asyncclick
21
+ Requires-Dist: gitpython
22
+ Requires-Dist: packaging
@@ -1,7 +1,7 @@
1
1
  # Makefile snippet for some standard Python stuff
2
2
 
3
3
  PACKAGE ?= $(notdir $(shell pwd))
4
- PYPI ?= $(PACKAGE)
4
+ PYPI ?= $(subst -,_,${PACKAGE})
5
5
 
6
6
  PATH := /usr/share/sphinx/scripts/python3:${PATH}
7
7
  export PYTHONPATH := $(PYTHONPATH)$(if $(PYTHONPATH),:)$(shell pwd)
@@ -97,7 +97,7 @@ pypi: tagged
97
97
  fi
98
98
  twine upload \
99
99
  dist/${PYPI}-$(shell git describe --tags --exact-match).tar.gz \
100
- dist/$(subst -,_,${PYPI})-$(shell git describe --tags --exact-match)-py3-none-any.whl
100
+ dist/${PYPI}-$(shell git describe --tags --exact-match)-py3-none-any.whl
101
101
 
102
102
  upload: pypi
103
103
  git push --tags
@@ -31,71 +31,72 @@ tool:
31
31
  ini_options:
32
32
  log_cli_level: DEBUG
33
33
  ruff:
34
- select:
35
- - ALL
36
- ignore:
37
- - ANN
38
- - PTH
39
- - PERF
40
- - D105
41
- - D107
42
- - A003
43
- - S101
44
- - RUF001
45
- - RUF002
46
- - PLW1514
47
- - D2
48
- - D3
49
- - D4
50
- - T2
51
- - FBT
52
- - TRY003
53
- - EM10
54
- - PLR
55
- - C
56
- - RET50
57
- - TD
58
- - FIX
59
- - N
60
- - ERA
61
- - BLE001
34
+ lint:
35
+ select:
36
+ - ALL
37
+ ignore:
38
+ - ANN
39
+ - PTH
40
+ - PERF
41
+ - D105
42
+ - D107
43
+ - A003
44
+ - S101
45
+ - RUF001
46
+ - RUF002
47
+ - PLW1514
48
+ - D2
49
+ - D3
50
+ - D4
51
+ - T2
52
+ - FBT
53
+ - TRY003
54
+ - EM10
55
+ - PLR
56
+ - C
57
+ - RET50
58
+ - TD
59
+ - FIX
60
+ - N
61
+ - ERA
62
+ - BLE001
63
+ explicit-preview-rules: true
64
+ flake8-comprehensions:
65
+ allow-dict-calls-with-keyword-arguments: true
66
+ flake8-builtins:
67
+ builtins-ignorelist:
68
+ - id
69
+ - help
70
+ isort:
71
+ no-lines-before:
72
+ - future
73
+ required-imports:
74
+ - "from __future__ import annotations"
75
+ section-order:
76
+ - future
77
+ - typing
78
+ - standard-library
79
+ - first-party
80
+ - upy
81
+ - moat
82
+ - local-folder
83
+ - third-party
84
+ extra-standard-library:
85
+ - pytest
86
+ - anyio
87
+ force-to-top:
88
+ - moat.util
89
+ sections:
90
+ moat:
91
+ - moat
92
+ upy:
93
+ - micropython
94
+ - machine
95
+ - esp
96
+ typing:
97
+ - typing
62
98
  preview: true
63
- explicit-preview-rules: true
64
99
  line-length: 99
65
- flake8-comprehensions:
66
- allow-dict-calls-with-keyword-arguments: true
67
- flake8-builtins:
68
- builtins-ignorelist:
69
- - id
70
- - help
71
- isort:
72
- no-lines-before:
73
- - future
74
- required-imports:
75
- - "from __future__ import annotations"
76
- section-order:
77
- - future
78
- - typing
79
- - standard-library
80
- - first-party
81
- - upy
82
- - moat
83
- - local-folder
84
- - third-party
85
- extra-standard-library:
86
- - pytest
87
- - anyio
88
- force-to-top:
89
- - moat.util
90
- sections:
91
- moat:
92
- - moat
93
- upy:
94
- - micropython
95
- - machine
96
- - esp
97
- typing:
98
- - typing
99
100
  black:
100
101
  line-length: 99
101
102
  flake8:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: moat-src
3
- Version: 0.6.0
3
+ Version: 0.6.1
4
4
  Summary: Tools for managing the MoaT sources
5
5
  Author-email: Matthias Urlichs <matthias@urlichs.de>
6
6
  Project-URL: homepage, https://m-o-a-t.org
@@ -15,3 +15,8 @@ Classifier: License :: OSI Approved
15
15
  Classifier: Development Status :: 4 - Beta
16
16
  Requires-Python: >=3.8
17
17
  Description-Content-Type: text/x-rst
18
+ Requires-Dist: anyio~=3.0
19
+ Requires-Dist: tomlkit~=0.12
20
+ Requires-Dist: asyncclick
21
+ Requires-Dist: gitpython
22
+ Requires-Dist: packaging
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes